3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-04 18:38:47 +02:00

Interpreter: fix incorrect handling of quoted arguments

This commit is contained in:
Pragmatic Software 2019-05-15 10:59:48 -07:00
parent 6f6090efc5
commit 2dc78f7383

View File

@ -370,6 +370,7 @@ sub make_args {
} else {
# mismatched quotes, shove the remainder as the last positional argument
push @arglist, $rest;
push @arglist_quotes, $rest;
last;
}
} else {