diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-09-25 23:20:23 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2018-09-25 23:20:23 +0200 |
commit | 45e57bb16903902a39045fa5e49027d1b6c7af6d (patch) | |
tree | ce3271fce2ed13b7dd5b029e38ab66aca1a636e8 | |
parent | f414fe587cef52cb8ff2b73a320ee0ce481170b6 (diff) |
Change single quote to double quote, windows doesn't like single quote
-rw-r--r-- | src/Ninja.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ninja.cpp b/src/Ninja.cpp index 70b0b57..5470d2b 100644 --- a/src/Ninja.cpp +++ b/src/Ninja.cpp @@ -19,7 +19,7 @@ namespace ninja { case NinjaArg::Type::VALUE: { - result += '\'' + arg.arg + '\''; + result += '\"' + arg.arg + '\"'; break; } case NinjaArg::Type::VARIABLE: |