You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/04 01:43:25 UTC

svn commit: r1499605 - /subversion/trunk/tools/dist/backport.pl

Author: danielsh
Date: Wed Jul  3 23:43:25 2013
New Revision: 1499605

URL: http://svn.apache.org/r1499605
Log:
* tools/dist/backport.pl
  (revert): Fix invocation to allow calling this in batch mode.

Modified:
    subversion/trunk/tools/dist/backport.pl

Modified: subversion/trunk/tools/dist/backport.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1499605&r1=1499604&r2=1499605&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Wed Jul  3 23:43:25 2013
@@ -332,8 +332,8 @@ sub vote {
 
 sub revert {
   copy $STATUS, "$STATUS.$$";
-  system $SVN, qw/revert -q/, $STATUS;
-  system $SVN, qw/revert -R ./;
+  system "$SVN revert -q $STATUS";
+  system "$SVN revert -R ./";
   move "$STATUS.$$", $STATUS;
 }