You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2008/11/15 15:00:47 UTC

svn commit: r714262 - /incubator/qpid/trunk/qpid/bin/release.sh

Author: rhs
Date: Sat Nov 15 06:00:46 2008
New Revision: 714262

URL: http://svn.apache.org/viewvc?rev=714262&view=rev
Log:
fixed or syntax

Modified:
    incubator/qpid/trunk/qpid/bin/release.sh

Modified: incubator/qpid/trunk/qpid/bin/release.sh
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/bin/release.sh?rev=714262&r1=714261&r2=714262&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/bin/release.sh (original)
+++ incubator/qpid/trunk/qpid/bin/release.sh Sat Nov 15 06:00:46 2008
@@ -25,7 +25,7 @@
 REV=$1
 VER=$2
 
-if [ -z "$REV" || -z "$VER" ]; then
+if [ -z "$REV" -o -z "$VER" ]; then
     echo "Usage: release.sh <revision> <version>"
     exit 1
 fi