Mention if any of the CVS files we're putting in the tar file
authorWayne Davison <wayned@samba.org>
Mon, 20 Feb 2006 18:34:27 +0000 (18:34 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 20 Feb 2006 18:34:27 +0000 (18:34 +0000)
aren't up-to-date.

packaging/nightly-rsync

index f8da0b3..8e28b5b 100755 (executable)
@@ -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;