You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/08/20 21:02:14 UTC

[lucy-commits] svn commit: r1159900 - /incubator/lucy/trunk/devel/bin/release_commands.pl

Author: marvin
Date: Sat Aug 20 19:02:13 2011
New Revision: 1159900

URL: http://svn.apache.org/viewvc?rev=1159900&view=rev
Log:
Have RM break out CHANGES as a separate file.

Modified:
    incubator/lucy/trunk/devel/bin/release_commands.pl

Modified: incubator/lucy/trunk/devel/bin/release_commands.pl
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/devel/bin/release_commands.pl?rev=1159900&r1=1159899&r2=1159900&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/bin/release_commands.pl (original)
+++ incubator/lucy/trunk/devel/bin/release_commands.pl Sat Aug 20 19:02:13 2011
@@ -85,11 +85,16 @@ say qq|# Sign the release.|;
 say qq|gpg --armor --output apache-lucy-incubating-$x_y_z_version.tar.gz.asc |
  . qq|--detach-sig apache-lucy-incubating-$x_y_z_version.tar.gz\n|;
 
+say qq|# Break out CHANGES as a separate file.|;
+say qq|cp -p apache-lucy-incubating-$x_y_z_version/CHANGES CHANGES-$x_y_z_version.txt\n|;
+
 say qq|# Copy files to people.apache.org.|;
 say qq|ssh $apache_id\@people.apache.org|;
 say qq|mkdir public_html/apache-lucy-incubating-$full_rc_version|;
 say qq|exit|;
 say qq|scp -p apache-lucy-incubating-$x_y_z_version.tar.gz* |
+ . qq|people.apache.org:~/public_html/apache-lucy-incubating-$full_rc_version|;
+say qq|scp -p CHANGES-$x_y_z_version.txt |
  . qq|people.apache.org:~/public_html/apache-lucy-incubating-$full_rc_version\n|;
 
 say qq|# Modify permissions.|;