bug 407785: Bootstrap::Util::CvsTag should log what it's going to do. r=rhelmer, patch=me

This commit is contained in:
bhearsum@mozilla.com 2007-12-17 14:22:27 -08:00
parent 7f98fbbd2d
commit a6299b0afd

View File

@ -228,6 +228,12 @@ sub CvsTag {
push(@cmdArgs, $tagName);
push(@cmdArgs, @{$files}) if (scalar(@{$files}) > 0);
# We can't use Bootstrap::Step logs since we are in Util, oh well...
print 'log: Running "cvs tag" as follows in' . $cvsDir . ':';
print 'log: cvs ' . join(' ', @cmdArgs);
print 'log: Logging output to: ' . $logFile;
print 'log: Timeout: ' . $timeout;
my %cvsTagArgs = (command => 'cvs',
args => \@cmdArgs,
dir => $cvsDir,