Author: karpet
Date: Mon Jan 16 05:02:33 2012
New Revision: 1231838
URL: http://svn.apache.org/viewvc?rev=1231838&view=rev
Log:
fix release command script to use version variable
Modified:
incubator/lucy/branches/0.3/devel/bin/release_commands.pl
Modified: incubator/lucy/branches/0.3/devel/bin/release_commands.pl
URL:
http://svn.apache.org/viewvc/incubator/lucy/branches/0.3/devel/bin/release_commands.pl?rev=1231838&r1=1231837&r2=1231838&view=diff
==============================================================================
--- incubator/lucy/branches/0.3/devel/bin/release_commands.pl (original)
+++ incubator/lucy/branches/0.3/devel/bin/release_commands.pl Mon Jan 16
05:02:33 2012
@@ -80,12 +80,12 @@ say qq|perl -MDigest -e '\$d = Digest->n
. qq|"<apache-lucy-incubating-$x_y_z_version.tar.gz" or die; |
. qq|\$d->addfile(\$fh); print \$d->hexdigest; |
. qq|print " apache-lucy-incubating-$x_y_z_version.tar.gz\\n"' > |
- . qq| apache-lucy-incubating-0.2.2.tar.gz.md5|;
+ . qq| apache-lucy-incubating-$x_y_z_version.tar.gz.md5|;
say qq|perl -MDigest -e '\$d = Digest->new("SHA-512"); open \$fh, |
. qq|"<apache-lucy-incubating-$x_y_z_version.tar.gz" or die; |
. qq|\$d->addfile(\$fh); print \$d->hexdigest; |
. qq|print " apache-lucy-incubating-$x_y_z_version.tar.gz\\n"' > |
- . qq| apache-lucy-incubating-0.2.2.tar.gz.sha\n|;
+ . qq| apache-lucy-incubating-$x_y_z_version.tar.gz.sha\n|;
say qq|# Sign the release.|;
say qq|gpg --armor --output apache-lucy-incubating-$x_y_z_version.tar.gz.asc |