|
From: <sv...@va...> - 2012-03-23 17:11:22
|
jf 2012-03-23 17:11:11 +0000 (Fri, 23 Mar 2012)
New Revision: 457
Log:
Change rsync to exclude .bz2 files in the downloads
directory, since these are not (typically) committed into
the valgrind-www repo
Modified files:
trunk/Makefile
Modified: trunk/Makefile (+2 -1)
===================================================================
--- trunk/Makefile 2012-03-23 16:25:34 +00:00 (rev 456)
+++ trunk/Makefile 2012-03-23 17:11:11 +00:00 (rev 457)
@@ -5,9 +5,10 @@
# the .htaccess is created in place, so don't want to delete
# it, so exclude it .htaccess.in doesn't need to be there,
# so exclude that too
+# Also exclude bzip archives in downloads, since they are put in manually
install: $(SITE)/.htaccess
- rsync --delete-after --perms --chmod=D+x,u+rw,go-w,+r --exclude /.htaccess.in --exclude /.htaccess --recursive --links --times --group ./ $(SITE)
+ rsync --delete-after --perms --chmod=D+x,u+rw,go-w,+r --exclude /.htaccess.in --exclude /.htaccess --exclude /downloads/\*\*.bz2 --recursive --links --times --group ./ $(SITE)
# the site-dependent .htaccess file:
$(SITE)/.htaccess: .htaccess.in Makefile
|