[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r8418: make ./publish stop when something fails (website/trunk)
Author: arma
Date: 2006-09-18 10:59:25 -0400 (Mon, 18 Sep 2006)
New Revision: 8418
Modified:
website/trunk/publish
Log:
make ./publish stop when something fails
Modified: website/trunk/publish
===================================================================
--- website/trunk/publish 2006-09-18 14:58:57 UTC (rev 8417)
+++ website/trunk/publish 2006-09-18 14:59:25 UTC (rev 8418)
@@ -1,10 +1,9 @@
#!/bin/sh
-svn update
-make
-# XXX should check whether make fails
+svn update && \
+make && \
# don't copy over stuff with permissions that make it useless
-chmod a+r * -R
+chmod a+r * -R && \
## I'm not comfortable having arbitrary people use --delete yet,
## since if they screw up it'll blow away arbitrary things.