aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9f14c67..05a6a03 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -190,5 +190,11 @@ int main(int argc, const char **argv)
exit(7);
}
+ Result<bool> buildResult = ninja.build(debugBuildPath.c_str());
+ if(buildResult.isErr())
+ {
+ exit(8);
+ }
+
return 0;
} \ No newline at end of file