Author: hibou
Date: Mon Jul  6 12:52:32 2009
New Revision: 791469

URL: http://svn.apache.org/viewvc?rev=791469&view=rev
Log:
Fix the pattern matching of the ivy feature

Modified:
    ant/ivy/updatesite/trunk/build.xml
    ant/ivy/updatesite/trunk/signIvyArtifacts.sh

Modified: ant/ivy/updatesite/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/updatesite/trunk/build.xml?rev=791469&r1=791468&r2=791469&view=diff
==============================================================================
--- ant/ivy/updatesite/trunk/build.xml (original)
+++ ant/ivy/updatesite/trunk/build.xml Mon Jul  6 12:52:32 2009
@@ -109,7 +109,7 @@
         <!-- delete previously installed ivy bundles -->
         <delete dir="${updatesite.dir}">
             <include name="plugins/org.apache.ivy_*" />
-            <include name="features/org.apache.ivy_*" />
+            <include name="features/org.apache.ivy.feature*" />
         </delete>
         <!-- install the plugin -->
         <mkdir dir="${updatesite.dir}/plugins" />

Modified: ant/ivy/updatesite/trunk/signIvyArtifacts.sh
URL: 
http://svn.apache.org/viewvc/ant/ivy/updatesite/trunk/signIvyArtifacts.sh?rev=791469&r1=791468&r2=791469&view=diff
==============================================================================
--- ant/ivy/updatesite/trunk/signIvyArtifacts.sh (original)
+++ ant/ivy/updatesite/trunk/signIvyArtifacts.sh Mon Jul  6 12:52:32 2009
@@ -19,7 +19,7 @@
 
 read -s -p "Key passphrase: " passphrase
 
-for i in dist/features/org.apache.ivy_*.jar; do gpg --passphrase "$passphrase" 
--output $i.asc --detach-sig --armor $i; done
+for i in dist/features/org.apache.ivy.feature*.jar; do gpg --passphrase 
"$passphrase" --output $i.asc --detach-sig --armor $i; done
 for i in dist/plugins/org.apache.ivy_*.jar;  do gpg --passphrase "$passphrase" 
--output $i.asc --detach-sig --armor $i; done
 for i in dist/plugins/org.apache.ivy_*.jar.pack.gz;  do gpg --passphrase 
"$passphrase" --output $i.asc --detach-sig --armor $i; done
 gpg --passphrase "$passphrase" --output dist/digest.zip.asc --detach-sig 
--armor dist/digest.zip


Reply via email to