X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/60414e5bced7bde9bf8a65ff35dfee738010a9be..2a7d9fe9b8792cc6b419b2e25e7cf73d1c06376c:/packaging/nightly-rsync diff --git a/packaging/nightly-rsync b/packaging/nightly-rsync index f8da0b38..7ec0029b 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;