"Updates"

This commit is contained in:
2026-07-06 13:44:34 +02:00
parent 87c92a7f32
commit 61db34f476
8906 changed files with 17731 additions and 4040 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
USER=pleb
HOST=carlo
DIR=/mnt/ssd/www/comics/ # the directory where your website files should go
hugo && rsync -avz --rsync-path='sudo rsync' --progress -e ssh --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public folder
exit 0