Commit 55d24e5f authored by Wayne Davison's avatar Wayne Davison

Mention if any of the CVS files we're putting in the tar file

aren't up-to-date.
parent 81f654e3
......@@ -51,8 +51,11 @@ if ($make_tar) {
push(@files, $1);
$dir = $1 . '/';
}
} elsif (/^File: (.*?)\s+Status: / && $1 ne '.cvsignore') {
} elsif (/^File: (.*?)\s+Status: (.*)/ && $1 ne '.cvsignore') {
push(@files, $dir . $1);
if ($2 ne 'Up-to-date') {
print "Not up-to-date: $dir$1\n";
}
}
}
close CVS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment