mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-06-13 01:08:19 +08:00
Fixed missing ; in OptionParser
This commit is contained in:
+1
-1
@@ -483,7 +483,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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user