Files
containers/slides/upload.sh
Marco Verleun 3fc1329bd4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Small fixes
2023-01-13 10:29:44 +01:00

9 lines
196 B
Bash
Executable File

#!/bin/bash
trap 'echo "Stopping sync"; exit 0' EXIT SIGINT SIGTERM
while true; do
fswatch -1 *html
rsync -r images/ slides.zip *html *css *js vps.verleun.org:/docker/web-sites/site/
done