You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2009/12/23 15:27:06 UTC

svn commit: r893521 - /incubator/pivot/infra/bin/maven-deploy.sh

Author: gbrown
Date: Wed Dec 23 14:27:06 2009
New Revision: 893521

URL: http://svn.apache.org/viewvc?rev=893521&view=rev
Log:
Add argument check to maven-deploy.sh.

Modified:
    incubator/pivot/infra/bin/maven-deploy.sh

Modified: incubator/pivot/infra/bin/maven-deploy.sh
URL: http://svn.apache.org/viewvc/incubator/pivot/infra/bin/maven-deploy.sh?rev=893521&r1=893520&r2=893521&view=diff
==============================================================================
--- incubator/pivot/infra/bin/maven-deploy.sh (original)
+++ incubator/pivot/infra/bin/maven-deploy.sh Wed Dec 23 14:27:06 2009
@@ -17,6 +17,11 @@
 ###
 
 VERSION=$1
+if [ "$VERSION" = "" ]; then
+    echo maven-deploy.sh: Must specify version number
+    exit
+fi
+
 BUNDLE_ROOT=maven/bundle
 
 sign_file() {