You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2008/03/24 18:18:28 UTC

svn commit: r640470 - /maven/core-integration-testing/trunk/run-its.sh

Author: hboutemy
Date: Mon Mar 24 10:18:25 2008
New Revision: 640470

URL: http://svn.apache.org/viewvc?rev=640470&view=rev
Log:
avoid script to continue if one step fails

Modified:
    maven/core-integration-testing/trunk/run-its.sh

Modified: maven/core-integration-testing/trunk/run-its.sh
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/run-its.sh?rev=640470&r1=640469&r2=640470&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/run-its.sh (original)
+++ maven/core-integration-testing/trunk/run-its.sh Mon Mar 24 10:18:25 2008
@@ -6,9 +6,8 @@
 
 mv "${LOCAL_REPO}" "${LOCAL_REPO}.its"
 
-mvn -N install
-
-( 
+mvn -N install \
+&& ( 
   cd core-integration-testing-plugins
   mvn install
   ret=$?; if [ $ret != 0 ]; then echo "Failed to install IT plugins" && exit $ret; fi