diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/release b/bin/release index 3fe118a..dc48b59 100755 --- a/bin/release +++ b/bin/release @@ -210,9 +210,9 @@ EOF if (-d "CVS") { my $tag = $ver; $tag =~ s/\./-/g; - print "Tag CVS sources with \"$tag\"? [y] "; + print "Tag CVS sources with \"$tag\"? [n] "; chomp ($_ = <STDIN>); - if (!$_ || $_ eq 'y') { + if ($_ eq 'y') { print "Tagging CVS sources...\n"; my $status = system "cvs tag -R $tag"; die "cvs tag failed" if $status >> 8; |