personal website: delete stale files
[web.git] / personal / upload.sh
index aac35c48ad2a1d20138516a14a270b297596d370..76dac8be4e23d1530d7e4ea8a39c1aba17b3b1b8 100755 (executable)
@@ -8,4 +8,8 @@ git add .
 git diff --cached
 git commit -m "site upload"
 
 git diff --cached
 git commit -m "site upload"
 
-rsync ./ www.ralfj.de:/srv/www.ralfj.de/docroot/ -aP --exclude .git
+# To include `projects/rust-101/index.html` while excluding the rest of that folder, we have to
+# write the exclusion as ".../*", or else rsync would not even descend into that directory.
+rsync ./ www.ralfj.de:/srv/www.ralfj.de/docroot/ -aP --delete \
+    --include projects/rust-101/index.html \
+    --exclude .git --exclude cs --exclude upload --exclude "projects/rust-101/*"