You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2010/08/10 18:11:36 UTC

svn commit: r984103 - in /ant/ivy/ivyde/trunk: signArtifacts.sh verifyArtifacts.sh

Author: hibou
Date: Tue Aug 10 16:11:36 2010
New Revision: 984103

URL: http://svn.apache.org/viewvc?rev=984103&view=rev
Log:
Now we have tar.gz and not tgz files

Modified:
    ant/ivy/ivyde/trunk/signArtifacts.sh
    ant/ivy/ivyde/trunk/verifyArtifacts.sh

Modified: ant/ivy/ivyde/trunk/signArtifacts.sh
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/signArtifacts.sh?rev=984103&r1=984102&r2=984103&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/signArtifacts.sh (original)
+++ ant/ivy/ivyde/trunk/signArtifacts.sh Tue Aug 10 16:11:36 2010
@@ -20,4 +20,4 @@
 read -s -p "Key passphrase: " passphrase
 
 for i in dist/apache-ivyde-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
-for i in dist/apache-ivyde-*.tgz; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
+for i in dist/apache-ivyde-*.tar.gz; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done

Modified: ant/ivy/ivyde/trunk/verifyArtifacts.sh
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/verifyArtifacts.sh?rev=984103&r1=984102&r2=984103&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/verifyArtifacts.sh (original)
+++ ant/ivy/ivyde/trunk/verifyArtifacts.sh Tue Aug 10 16:11:36 2010
@@ -18,4 +18,4 @@
 #   under the License.
 
 for i in dist/apache-ivyde-*.zip; do gpg --verify $i.asc; done
-for i in dist/apache-ivyde-*.tgz; do gpg --verify $i.asc; done
+for i in dist/apache-ivyde-*.tar.gz; do gpg --verify $i.asc; done