From 0b3bdff8fb8b7db80d1da8206e6f16d21fe30aa7 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 8 Mar 2022 16:15:12 +0100 Subject: Fix skip-compile option inverted --- backend/ninja/Ninja.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/ninja/Ninja.cpp') 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 buildResult = compile(savePath); if (!buildResult) return buildResult; -- cgit v1.2.3