Single-quotes now behave as expected for parse_arguments()

This commit is contained in:
Pragmatic Software 2017-08-23 19:16:32 -07:00
parent 98a061b232
commit 23c2c3d84e
1 changed files with 1 additions and 0 deletions

View File

@ -123,6 +123,7 @@ sub interpreter {
sub parse_arguments {
my ($self, $arguments) = @_;
$arguments =~ s/(?<!\\)'/\\'/g;
return shellwords($arguments);
}