You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by tr...@apache.org on 2007/08/03 07:58:14 UTC

svn commit: r562345 - /mina/all/deploy-all.sh

Author: trustin
Date: Thu Aug  2 22:58:13 2007
New Revision: 562345

URL: http://svn.apache.org/viewvc?view=rev&rev=562345
Log:
Made sure all artifacts are deployed before reports are generated


Modified:
    mina/all/deploy-all.sh

Modified: mina/all/deploy-all.sh
URL: http://svn.apache.org/viewvc/mina/all/deploy-all.sh?view=diff&rev=562345&r1=562344&r2=562345
==============================================================================
--- mina/all/deploy-all.sh (original)
+++ mina/all/deploy-all.sh Thu Aug  2 22:58:13 2007
@@ -1,6 +1,15 @@
 #!/bin/sh
-cd `dirname $0`
-cd trunk && mvn clean deploy site site:deploy && \
-cd ../branches/1.0 && mvn clean deploy site site:deploy && \
-cd ../branches/1.1 && mvn clean deploy site site:deploy
+cd `dirname $0` || exit 1
+
+cd trunk || exit 1
+mvn clean deploy || exit 1
+mvn site site:deploy || exit 1
+
+cd ../branches/1.1 || exit 1
+mvn clean deploy || exit 1
+mvn site site:deploy || exit 1
+
+cd ../branches/1.0 || exit 1
+mvn clean deploy || exit 1
+mvn site site:deploy || exit 1