print update message only if we really update CVS.

This commit is contained in:
Gunter Knauf 2007-04-01 13:59:50 +00:00
parent bf2c1e099c
commit 0839621f47
1 changed files with 1 additions and 1 deletions

View File

@ -343,12 +343,12 @@ if ($CVS) {
sub cvsup() {
# update quietly to the latest CVS
logit "run cvs up";
if($nocvsup) {
logit "Skipping CVS update (--nocvsup)";
return 1;
}
else {
logit "run cvs up";
system("cvs -Q up -dP 2>&1");
}