diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-15 14:38:23 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-15 14:38:23 +0000 |
commit | c4542da166e9c5d19755cb2f51938d2d9d9f262e (patch) | |
tree | 5dd03df5d14bb40bcba3c4347eeda26b344255fb /bin | |
parent | d52ea34bef39a0794818e433db8b5daf9da72f5f (diff) | |
download | ATCD-c4542da166e9c5d19755cb2f51938d2d9d9f262e.tar.gz |
redirect output of tag command to /dev/null
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/make_release | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/make_release b/bin/make_release index 43262fc1f79..869f3c28bc8 100755 --- a/bin/make_release +++ b/bin/make_release @@ -288,8 +288,10 @@ sub tag () { #### cvs tag does not allow dots. $tag =~ tr/./_/; - system ("$cvs -q tag $tag $controlled_files"); + print "start tagging $tag\n"; + system ("$cvs -q tag $tag $controlled_files > /dev/null"); return 1 if $? >> 8; + print "finished tagging $tag\n"; 0; } |