Fix for config.pl if no arguments are passed

This commit is contained in:
Simon Butcher 2016-06-23 21:57:06 +01:00
parent e7be5bdb96
commit 36b0c55cad

View File

@ -145,6 +145,9 @@ while ($arg = shift) {
}
}
# If no command was specified, exit...
if ( not defined($action) ){ die $usage; }
# Check the config file is present
if (! -f $config_file) {