X-Git-Url: https://vcs.fsf.org/?p=fsf-giving-guide.git;a=blobdiff_plain;f=git-hooks%2Fpost-update;h=340c0110c306b60948d5ae6da03f5817fb86a740;hp=4a1bb33b48ecef18ccbdf9cd1e85779be1d2c5d6;hb=0cb68fbd54f33fff00cdc5855e254eab03ec3d81;hpb=6430e51ed8844aa7c681353e5fe562ae2d64b660 diff --git a/git-hooks/post-update b/git-hooks/post-update index 4a1bb33..340c011 100755 --- a/git-hooks/post-update +++ b/git-hooks/post-update @@ -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