From 7eb4e71147512416612a2c523b52965a80a437ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 7 Mar 2024 01:00:46 +0100 Subject: [PATCH] Fix reporting exit code when command line export fails Fixes #83042. (cherry picked from commit 51bfda9446b362441354d24ab5ba04a066f6696c) --- editor/editor_node.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index aa816bcf9aa1..d247b8af4214 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -993,7 +993,9 @@ void EditorNode::_fs_changed() { if (err != OK) { ERR_PRINT(export_error); _exit_editor(EXIT_FAILURE); - } else if (!export_error.is_empty()) { + return; + } + if (!export_error.is_empty()) { WARN_PRINT(export_error); } _exit_editor(EXIT_SUCCESS);