Author: danielsh
Date: Mon Feb 27 04:37:05 2012
New Revision: 1294025
URL: http://svn.apache.org/viewvc?rev=1294025&view=rev
Log:
* tools/dist/backport.pl:
Force --non-interactive differently.
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=1294025&r1=1294024&r2=1294025&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Mon Feb 27 04:37:05 2012
@@ -36,7 +36,7 @@ my $DEBUG = qw[false true][0]; # 'set -x
# derived values
my $SVNq;
-$SVN .= " --non-interactive" unless defined ctermid;
+$SVN .= " --non-interactive" if $YES or not defined ctermid;
$SVNq = "$SVN -q ";
$SVNq =~ s/-q// if $DEBUG eq 'true';