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:48:14 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-03 14:48:14 +0300
commit56fcb18a22e83d010df719b8087dddc4db0bc8d1 (patch)
tree2cf1f17afe4efcc091fda74b691c924407c972a5 /build_files
parent66067f3a9783f5b58fd14cc0e5d6df219af5360c (diff)
Buildbot: attempt to solve packing on windows
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_pack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index d001b251937..6005b42fd82 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -165,7 +165,7 @@ else:
os.rename(result_file, "{}.zip".format(builderified_name))
# create zip file
try:
- upload_zip = "../install/buildbot_upload.zip"
+ upload_zip = os.path.join("..", "install", "buildbot_upload.zip")
if os.path.exists(upload_zip):
os.remove(upload_zip)
z = zipfile.ZipFile(upload_zip, "w", compression=zipfile.ZIP_STORED)