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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-06-26 14:18:38 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-06-26 14:18:38 +0400
commitee20433cf3a817a363816038b738b96e51ebd78c (patch)
treec7fd6c445660ee78f685e4105ce3c94acf4df924 /build_files
parent283abdf3b2de08c9e5be764a02e89120fe7b67da (diff)
Tweak to previous commit, fixes scons to survive when upstream is not found
Diffstat (limited to 'build_files')
-rw-r--r--build_files/scons/tools/btools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/scons/tools/btools.py b/build_files/scons/tools/btools.py
index 83daef7c00b..434598a015e 100644
--- a/build_files/scons/tools/btools.py
+++ b/build_files/scons/tools/btools.py
@@ -26,7 +26,7 @@ def get_command_output(*popenargs, **kwargs):
cmd = kwargs.get("args")
if cmd is None:
cmd = popenargs[0]
- raise
+ raise subprocess.CalledProcessError(retcode, cmd, output=output)
return output
def get_version():