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 2012/02/02 13:14:17 UTC

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

Author: danielsh
Date: Thu Feb  2 12:14:17 2012
New Revision: 1239570

URL: http://svn.apache.org/viewvc?rev=1239570&view=rev
Log:
* tools/dist/backport.pl
  (merge): Don't run sh in debugging 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=1239570&r1=1239569&r2=1239570&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Thu Feb  2 12:14:17 2012
@@ -114,7 +114,7 @@ else
 fi
 EOF
 
-  open SHELL, '|-', qw#/bin/sh -x# or die $!;
+  open SHELL, '|-', qw#/bin/sh#, ($WET_RUN ? () : '-x') or die $!;
   print SHELL $script;
   close SHELL or warn "$0: sh($?): $!";