print update message only if we really update CVS.

This commit is contained in:
Gunter Knauf 2007-04-01 13:59:50 +00:00
Родитель bf2c1e099c
Коммит 0839621f47
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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");
}