From 7e529c2a64752c0483f84024fb71edc11d88578e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 18 Jun 2015 14:07:39 +0200 Subject: Return non-zero exit code when running blender from the command line and reading file has failed This way automated scripts can actually see if some issue happened. --- source/creator/creator.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source') 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; } -- cgit v1.2.3