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/07/19 00:55:54 UTC

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

Author: marvin
Date: Mon Jul 18 22:55:54 2011
New Revision: 1148084

URL: http://svn.apache.org/viewvc?rev=1148084&view=rev
Log:
Properly generate backslashes in command.

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=1148084&r1=1148083&r2=1148084&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/bin/release_commands.pl (original)
+++ incubator/lucy/trunk/devel/bin/release_commands.pl Mon Jul 18 22:55:54 2011
@@ -83,8 +83,8 @@ say qq|scp -p apache-lucy-incubating-$x_
 say qq|# Modify permissions.|;
 say qq|ssh people.apache.org|;
 say qq|cd public_html/apache-lucy-incubating-$full_rc_version/|;
-say qq|find . -type f -exec chmod 664 {} \;|;
-say qq|find . -type d -exec chmod 775 {} \;|;
+say qq|find . -type f -exec chmod 664 {} \\;|;
+say qq|find . -type d -exec chmod 775 {} \\;|;
 say qq|chgrp -R incubator *\n|;
 
 say qq|# Tag release after all votes have passed.|;