Fix build.sh to terminate correctly on error
[senf.git] / admin / build.sh
index c7f2d3f..ac3fdef 100755 (executable)
@@ -24,8 +24,12 @@ if grep -qv '^At ' ../svn-update.log; then
 fi
 rm -f ../svn-update.log
 
-echo '$ scons -k all && scons fixlinks'
-scons -k all && scons linklint && scons fixlinks
+echo '$ scons -k all'
+scons -k all
+echo '$ scons linklint'
+scons linklint
+echo '$ scons fixlinks'
+scons fixlinks
 echo -n '# Build completed at '; date --utc
 
 exec >../upload.log 2>&1