You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jr...@apache.org on 2009/04/27 01:41:50 UTC

svn commit: r768830 - /wicket/sandbox/jthomerson/1.4-rc3/release.sh

Author: jrthomerson
Date: Sun Apr 26 23:41:50 2009
New Revision: 768830

URL: http://svn.apache.org/viewvc?rev=768830&view=rev
Log:
fix release script so it will work with my extra long and strange passphrase

Modified:
    wicket/sandbox/jthomerson/1.4-rc3/release.sh

Modified: wicket/sandbox/jthomerson/1.4-rc3/release.sh
URL: http://svn.apache.org/viewvc/wicket/sandbox/jthomerson/1.4-rc3/release.sh?rev=768830&r1=768829&r2=768830&view=diff
==============================================================================
--- wicket/sandbox/jthomerson/1.4-rc3/release.sh (original)
+++ wicket/sandbox/jthomerson/1.4-rc3/release.sh Sun Apr 26 23:41:50 2009
@@ -62,14 +62,14 @@
 
 # package and assemble the release
 echo "Package and assemble the release"
-mvn5 -ff -Dgpg.passphrase=$passphrase -Prelease deploy javadoc:javadoc assembly:attached $1
+mvn5 -ff -Dgpg.passphrase="$passphrase" -Prelease deploy javadoc:javadoc assembly:attached $1
 
 filename=`ls target/dist/apache-wicket*gz`
 gpg --print-md MD5 $filename > $filename.md5
 gpg --print-md SHA1 $filename > $filename.sha
-echo $passphrase | gpg --passphrase-fd 0 --armor --output $filename.asc --detach-sig $filename
+echo "$passphrase" | gpg --passphrase-fd 0 --armor --output $filename.asc --detach-sig $filename
 
 filename=`ls target/dist/apache-wicket*zip`
 gpg --print-md MD5 $filename > $filename.md5
 gpg --print-md SHA1 $filename > $filename.sha
-echo $passphrase | gpg --passphrase-fd 0 --armor --output $filename.asc --detach-sig $filename
+echo "$passphrase" | gpg --passphrase-fd 0 --armor --output $filename.asc --detach-sig $filename