Merge pull request #83 from jonathandturner/quoted_linux

Fix quoted strings in linux
This commit is contained in:
Jonathan Turner 2019-06-05 14:28:40 +12:00 committed by GitHub
commit 1c983059b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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),