Fixed missing ; in OptionParser

This commit is contained in:
Carlos Salguero
2016-11-05 10:40:45 -03:00
parent 9f3f569725
commit c17f0560ec
23 changed files with 23 additions and 23 deletions

View File

@@ -482,7 +482,7 @@ sub get_opts {
if ( @ARGV && $ARGV[0] =~/^--config=/ ) {
$ARGV[0] = substr($ARGV[0],9);
$ARGV[0] =~ s/^'(.*)'$/$1/
$ARGV[0] =~ s/^'(.*)'$/$1/;
$ARGV[0] =~ s/^"(.*)"$/$1/;
$self->_set_option('config', shift @ARGV);
}