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-02 21:39:08 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-02 21:39:08 +0300
commit736ce9c8fd5b739f1a9572a65e32ced2b68b84b2 (patch)
treeadfe5f4a2c2200a45e8dd384bd61128a74e51739 /build_files
parent6af1cde2397eaebefac7a4c2b6d6d7352e771c59 (diff)
Buildbot: Attempt to resolve wrong path to the buildbot_upload.zip
It is expected to be in the build folder for the cmake. Ideally it should be build/<builder> or install/<builder> but that's a bit more involved change. Will look into it later.
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 0e5942f332e..6b12c139759 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -159,7 +159,7 @@ else:
os.rename(result_file, "{}.zip".format(builderified_name))
# create zip file
try:
- upload_zip = "buildbot_upload.zip"
+ upload_zip = "../buildbot_upload.zip"
if os.path.exists(upload_zip):
os.remove(upload_zip)
z = zipfile.ZipFile(upload_zip, "w", compression=zipfile.ZIP_STORED)