You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/08/04 09:37:24 UTC

svn commit: r227318 - /maven/continuum/trunk/build.sh

Author: evenisse
Date: Thu Aug  4 00:37:02 2005
New Revision: 227318

URL: http://svn.apache.org/viewcvs?rev=227318&view=rev
Log:
Add return code

Modified:
    maven/continuum/trunk/build.sh

Modified: maven/continuum/trunk/build.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/build.sh?rev=227318&r1=227317&r2=227318&view=diff
==============================================================================
--- maven/continuum/trunk/build.sh (original)
+++ maven/continuum/trunk/build.sh Thu Aug  4 00:37:02 2005
@@ -15,4 +15,6 @@
 esac
 
   m2 -Denv=test clean:clean install "$@"
+  ret=$?; if [ $ret != 0 ]; then exit $ret; fi
 ) 2>&1 | tee result.log
+ret=$?; if [ $ret != 0 ]; then exit $ret; fi
\ No newline at end of file