1
0
mirror of https://github.com/UzixLS/pacemuzx.git synced 2025-07-18 23:01:36 +03:00

Fixed command-line argument

Changed getopt to getops to fix -v option for verbose output.
This commit is contained in:
Simon Owen
2011-11-13 17:46:55 +00:00
parent d7daf60ef5
commit 787a7fc1af

View File

@ -10,7 +10,7 @@ use Compress::Zlib;
use Getopt::Std;
# Allow -v option for verbose output
getopt('v');
getopts('v');
# Strip path from input filename, and check
$0 =~ s/.*\///;