From 736ce9c8fd5b739f1a9572a65e32ced2b68b84b2 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 2 Dec 2015 23:39:08 +0500 Subject: [PATCH] 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/ or install/ but that's a bit more involved change. Will look into it later. --- build_files/buildbot/slave_pack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)