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>2015-12-03 14:35:04 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-03 14:35:04 +0300
commit27c0997417a165fed012803bc7363445d2c7b2eb (patch)
tree8aa1dac90af1a1fc00b58098da39354f607a07e7 /build_files
parent91d8a9d0352cf8f2ca684df3db84caa1aad68dc6 (diff)
Buildbot: Make sure install directory always exists
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_pack.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index 30f02e2f57e..250b074ea3e 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'