diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-09-25 23:20:23 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:28:02 +0200 |
commit | 640c0a8d3470c1276fa8c600760cfc3c75731bf9 (patch) | |
tree | 5bc6cff051977f4f02d6bee5acb72d70aab7ac49 | |
parent | 720f9f6af3915cfa55d07cb3da72e897f46851a5 (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: |