From 55d24e5fedfd872e06b3a38569be16ab66b0bd88 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 20 Feb 2006 18:34:27 +0000 Subject: [PATCH] Mention if any of the CVS files we're putting in the tar file aren't up-to-date. --- packaging/nightly-rsync | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packaging/nightly-rsync b/packaging/nightly-rsync index f8da0b38..8e28b5b7 100755 --- a/packaging/nightly-rsync +++ b/packaging/nightly-rsync @@ -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; -- 2.34.1