[Bf-blender-cvs] [ee20433] master: Tweak to previous commit, fixes scons to survive when upstream is not found

Sergey Sharybin noreply at git.blender.org
Thu Jun 26 12:19:12 CEST 2014


Commit: ee20433cf3a817a363816038b738b96e51ebd78c
Author: Sergey Sharybin
Date:   Thu Jun 26 16:18:38 2014 +0600
https://developer.blender.org/rBee20433cf3a817a363816038b738b96e51ebd78c

Tweak to previous commit, fixes scons to survive when upstream is not found

===================================================================

M	build_files/scons/tools/btools.py

===================================================================

diff --git a/build_files/scons/tools/btools.py b/build_files/scons/tools/btools.py
index 83daef7..434598a 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():




More information about the Bf-blender-cvs mailing list