remove the -u flag to the call to zip. This causes various problems with the jar stuff.

(I just made this change to commercial earlier)
This commit is contained in:
mscott%netscape.com 2000-08-29 00:45:26 +00:00
Родитель ce29e09ac6
Коммит 991dfcda61
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ sub Cleanup
sub JarIt
{
my ($jarfile, $args) = @_;
system "zip -u $jarfile $args\n" || die "zip failed";
system "zip $jarfile $args\n" || die "zip failed";
my $cwd = cwd();
print "+++ jarred $cwd => $jarfile\n";
Cleanup();