]> mj.ucw.cz Git - libucw.git/commitdiff
non-fatal warning on an unknown commited (croniak)
authorRobert Spalek <robert@ucw.cz>
Mon, 20 Jun 2005 17:32:45 +0000 (17:32 +0000)
committerRobert Spalek <robert@ucw.cz>
Mon, 20 Jun 2005 17:32:45 +0000 (17:32 +0000)
build/cvslog

index 01069b2354738a1c9f49e322c5745279dba331f7..c9a16c3ded7ce4de53b4498760eaf6d7029b387b 100755 (executable)
@@ -60,7 +60,8 @@ while (<STDIN>) {
 
 foreach $id (sort keys %date) {
        if (!exists ($names{$author{$id}})) {
-               die "Unknown commiter $author{$id}";
+               print STDERR "Unknown commiter $author{$id}\n";
+               $names{$author{$id}} = "unknown $author{$id}";
        }
        print "### ", $date{$id}, "  ", $names{$author{$id}}, "\n\n";
        print $files{$id}, "\n";