From 568d3ab1f9788ce6e6f9f1ee5e25d5311d984266 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Wed, 29 May 2019 09:19:11 -0700 Subject: [PATCH] Fix release build zip name --- tools/ci-scripts/postbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci-scripts/postbuild.py b/tools/ci-scripts/postbuild.py index e735083bda..ab01e7c795 100644 --- a/tools/ci-scripts/postbuild.py +++ b/tools/ci-scripts/postbuild.py @@ -32,7 +32,7 @@ elif sys.platform == "darwin": def computeArchiveName(): RELEASE_TYPE = os.getenv("RELEASE_TYPE", "DEV") RELEASE_NUMBER = os.getenv("RELEASE_NUMBER", "") - GIT_PR_COMMIT_SHORT = os.getenv("GIT_PR_COMMIT_SHORT", "") + GIT_PR_COMMIT_SHORT = os.getenv("SHA7", "") if RELEASE_TYPE == "PRODUCTION": BUILD_VERSION = "{}-{}".format(RELEASE_NUMBER, GIT_PR_COMMIT_SHORT)