Buildbot: Make sure install directory always exists

This commit is contained in:
Sergey Sharybin 2015-12-03 16:35:04 +05:00
parent 91d8a9d035
commit 27c0997417
1 changed files with 5 additions and 0 deletions

View File

@ -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'