Merge pull request #89234 from akien-mga/cmdline-export-fix-exit-code

Fix reporting exit code when command line export fails
This commit is contained in:
Rémi Verschelde 2024-03-07 10:04:37 +01:00
commit 1c8d082a3d
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -995,7 +995,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);