Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 8c1ae3d8c87..856d0e10f1f 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -1405,6 +1405,14 @@ static int load_file(int UNUSED(argc), const char **argv, void *data)
}
else {
/* failed to load file, stop processing arguments */
+ if (G.background) {
+ /* Set is_break if running in the background mode so
+ * blender will return non-zero exit code which then
+ * could be used in automated script to control how
+ * good or bad things are.
+ */
+ G.is_break = true;
+ }
return -1;
}