[Bf-blender-cvs] [27c0997] master: Buildbot: Make sure install directory always exists

Sergey Sharybin noreply at git.blender.org
Thu Dec 3 12:35:15 CET 2015


Commit: 27c0997417a165fed012803bc7363445d2c7b2eb
Author: Sergey Sharybin
Date:   Thu Dec 3 16:35:04 2015 +0500
Branches: master
https://developer.blender.org/rB27c0997417a165fed012803bc7363445d2c7b2eb

Buildbot: Make sure install directory always exists

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

M	build_files/buildbot/slave_pack.py

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

diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index 30f02e2..250b074 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -58,6 +58,11 @@ def parse_header_file(filename, define):
     return None
 
 
+# Make sure install directory always exists
+if not os.path.exists(install_dir):
+    os.makesirs(install_dir)
+
+
 # scons does own packaging
 if builder.find('scons') != -1:
     python_bin = 'python'




More information about the Bf-blender-cvs mailing list