diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-03-08 16:15:12 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-03-08 16:15:12 +0100 |
commit | 0b3bdff8fb8b7db80d1da8206e6f16d21fe30aa7 (patch) | |
tree | 5cb94f79462879490ff8ca094e774269a954437d /backend | |
parent | d20ab1b390c14ac794ca3438df7e1d9cf057ceed (diff) |
Fix skip-compile option inverted
Diffstat (limited to 'backend')
-rw-r--r-- | backend/ninja/Ninja.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/ninja/Ninja.cpp b/backend/ninja/Ninja.cpp index 7c0e9c0..0e03e20 100644 --- a/backend/ninja/Ninja.cpp +++ b/backend/ninja/Ninja.cpp @@ -1707,7 +1707,7 @@ namespace backend if (fileOverwriteResult.isErr()) return fileOverwriteResult; - if(config.skipCompile) { + if(!config.skipCompile) { Result<bool> buildResult = compile(savePath); if (!buildResult) return buildResult; |