Subject: | Wrong error message |
from source:
# no data handle, we're screwed
elsif ( tell( *main::DATA ) == -1 ) {
print STDERR "Add __END__ to end of script '$0'"
. " to be able use the features of Sys::RunALone\n";
exit 2;
}
bugfix:
s/__END__/__DATA/;
s/RunALone/RunAlone/;