summaryrefslogtreecommitdiffstats
path: root/src/shell.pest
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell.pest')
-rw-r--r--src/shell.pest2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.pest b/src/shell.pest
index b1bcae5..fce2c11 100644
--- a/src/shell.pest
+++ b/src/shell.pest
@@ -23,7 +23,7 @@ word = ${
redir_prefix? ~
(var | bareword |
"'" ~ single_string ~ "'" |
- "\"" ~ double_string ~ "\"")
+ "\"" ~ (var | double_string)+ ~ "\"")+
}
exe = ${ word ~ (w ~ word)* }