[or-cvs] r8418: make ./publish stop when something fails (website/trunk)

arma at seul.org arma at seul.org
Mon Sep 18 14:59:25 UTC 2006


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.



More information about the tor-commits mailing list