http://www.perlmonks.org?node_id=442802


in reply to archive-zip problem

You should probably check your open call (and check if $vsc_log is empty)?

die "Error: $vsc_log does not exist" unless -e $vsc_log; die "Error: $vsc_log is empty" unless -s $vsc_log; open( FH, "< $vsc_log" ) or die "Cannot open $vsc_log: $!";
-derby