diff --git a/src/parser/ast.rs b/src/parser/ast.rs index 9a859d4c5..f1d4f2db8 100644 --- a/src/parser/ast.rs +++ b/src/parser/ast.rs @@ -400,7 +400,7 @@ impl Leaf { fn as_external_arg(&self) -> String { match self { - Leaf::String(s) => format!("{}", s), + Leaf::String(s) => format!("\"{}\"", s), Leaf::Bare(path) => format!("{}", path.to_string()), Leaf::Boolean(b) => format!("{}", b), Leaf::Int(i) => format!("{}", i),