updated guide.
[fsf-giving-guide.git] / git-hooks / post-update
index 4a1bb33b48ecef18ccbdf9cd1e85779be1d2c5d6..340c0110c306b60948d5ae6da03f5817fb86a740 100755 (executable)
@@ -26,12 +26,10 @@ echo Updating local checkout...
 git pull
 git reset --hard $1
 echo Copying files...
-# A lot of files that we *don't* want to copy, so we're selective.
-rsync -az --delete --prune-empty-dirs \
-    --include='*.html' --include='*.js' \
-    --include='img/**' --include='fonts/**' --include='*.css' --exclude='*' \
-    /home/git/local/checkouts/fsf-giving-guide \
-    vcshookuser@fsf.org:/var/www/ #2>/dev/null
+# copy the v8 etc dirs.
+# note, the -f arg is a trick documented in the rsync man page
+rsync -vazm --delete --include='/v[[:digit:]]/***' --include='/v[[:digit:]][[:digit:]]/***' \
+      -f 'hide,! */' /home/git/local/checkouts/fsf-giving-guide/ vcshookuser@fsf.org:/var/www/fsf-giving-guide
 echo Fixing permissions on webserver...
-ssh vcshookuser@fsf.org 'find /var/www/fsf-giving-guide -type f -print0 | xargs -0 chmod 664 && find /var/www/fsf-giving-guide -type d -print0 | xargs -0 chmod 775' # 2>/dev/null
+ssh vcshookuser@fsf.org chmod -R ug=rwX,o=rX /var/www/fsf-giving-guide
 exec git update-server-info