You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by mc...@apache.org on 2013/01/03 15:45:34 UTC

svn commit: r1428368 - /qpid/proton/trunk/bin/release.sh

Author: mcpierce
Date: Thu Jan  3 14:45:33 2013
New Revision: 1428368

URL: http://svn.apache.org/viewvc?rev=1428368&view=rev
Log:
PROTON-190: Enable verbose/debugging output for release.sh

Also added in the missing option "r" to the definition list.

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

Modified: qpid/proton/trunk/bin/release.sh
URL: http://svn.apache.org/viewvc/qpid/proton/trunk/bin/release.sh?rev=1428368&r1=1428367&r2=1428368&view=diff
==============================================================================
--- qpid/proton/trunk/bin/release.sh (original)
+++ qpid/proton/trunk/bin/release.sh Thu Jan  3 14:45:33 2013
@@ -44,12 +44,13 @@ usage()
     echo "-u URL      The base URL for the repository (def. ${URL})"
     echo "-b BRANCH   The branch to check out (def. ${BRANCH})"
     echo "-r REVISION The revision to check out (def. HEAD)"
+    echo "-d          Show verbose debugging output"
     echo ""
     exit 0
 }
 
 
-while getopts "hu:b:v:" OPTION; do
+while getopts "hu:b:r:v:d" OPTION; do
     case $OPTION in
         h) usage;;
 
@@ -61,6 +62,8 @@ while getopts "hu:b:v:" OPTION; do
 
         r) REVISION=$OPTARG;;
 
+        d) set -v;;
+
         \?) usage;;
     esac
 done



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org