fixed statblock styling and region layout

This commit is contained in:
evilchili
2022-08-04 23:47:16 -07:00
parent 49971ae270
commit 9e960cb251
5 changed files with 107 additions and 213 deletions
+3 -2
View File
@@ -2,6 +2,7 @@ import click
import os
import shutil
import subprocess
import shlex
import sys
import typer
import webbrowser
@@ -101,14 +102,14 @@ def serve() -> None:
def publish() -> None:
clean()
pelican_run(publish=True)
subprocess.call(
subprocess.run(shlex.split(
'rsync --delete --exclude ".DS_Store" -pthrvz -c '
'-e "ssh -p {ssh_port}" '
'{} {ssh_user}@{ssh_host}:{ssh_path}'.format(
CONFIG['deploy_path'].rstrip('/') + '/',
**CONFIG
)
)
))
@app.command()