Fix svnmucc command in release_commands.pl

The svnmucc release command was broken by a recent svn update. It
doesn't seem to be possible to move files and remove the old parent
directory in a single step. See

    https://issues.apache.org/jira/browse/SVN-4579.

Fixes LUCY-308.


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/779c0f62
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/779c0f62
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/779c0f62

Branch: refs/heads/0.6
Commit: 779c0f628ce1513ee0e2d46b2be85ffa067df24a
Parents: a7b7e0e
Author: Nick Wellnhofer <wellnho...@aevum.de>
Authored: Tue Dec 13 16:21:24 2016 +0100
Committer: Nick Wellnhofer <wellnho...@aevum.de>
Committed: Tue Dec 13 16:21:24 2016 +0100

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/779c0f62/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index d7a8d89..91cdc5f 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -178,7 +178,9 @@ say qq|svnmucc -m "Publish Apache Lucy $x_y_z_version" |
     . qq|mv 
dev/lucy/apache-lucy-$full_rc_version/apache-lucy-$x_y_z_version.tar.gz.asc |
     . qq|release/lucy/apache-lucy-$x_y_z_version.tar.gz.asc |
     . qq|mv dev/lucy/apache-lucy-$full_rc_version/CHANGES-$x_y_z_version.txt |
-    . qq|release/lucy/CHANGES-$x_y_z_version.txt |
+    . qq|release/lucy/CHANGES-$x_y_z_version.txt|;
+say qq|svnmucc -m "Remove apache-lucy-$full_rc_version directory" |
+    . qq|-U https://dist.apache.org/repos/dist/ |
     . qq|rm dev/lucy/apache-lucy-$full_rc_version\n|;
 
 say qq|# Carefully remove the artifacts for any previous releases superseded|;

Reply via email to