From 16b35b59d15788093dba043aaad3431daefdaa76 Mon Sep 17 00:00:00 2001 From: dogboydog Date: Fri, 28 Oct 2022 16:59:25 -0400 Subject: set exit code EXIT_FAILURE when --build-solutions fails --- main/main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main') diff --git a/main/main.cpp b/main/main.cpp index dbaf42b3e4..061d952558 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -3227,10 +3227,12 @@ bool Main::iteration() { auto_build_solutions = false; // Only relevant when running the editor. if (!editor) { + OS::get_singleton()->set_exit_code(EXIT_FAILURE); ERR_FAIL_V_MSG(true, "Command line option --build-solutions was passed, but no project is being edited. Aborting."); } if (!EditorNode::get_singleton()->call_build()) { + OS::get_singleton()->set_exit_code(EXIT_FAILURE); ERR_FAIL_V_MSG(true, "Command line option --build-solutions was passed, but the build callback failed. Aborting."); } -- cgit v1.2.3