From 883005a323813c7dfabfdd6bcc56ec9d0684ab7e Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 13 Jan 2020 13:55:45 -0800 Subject: [PATCH] devops: fix firefox win64 upload to CDN (#469) --- browser_patches/upload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser_patches/upload.sh b/browser_patches/upload.sh index 4ce88fad8a..a2a0f6601b 100755 --- a/browser_patches/upload.sh +++ b/browser_patches/upload.sh @@ -36,8 +36,6 @@ BLOB_NAME="" ALIAS="" if [[ ("$1" == "firefox") || ("$1" == "firefox/") ]]; then - # we always apply our patches atop of beta since it seems to get better - # reliability guarantees. BUILD_NUMBER=$(cat "$PWD/firefox/BUILD_NUMBER") BROWSER_NAME="firefox" if [[ "$(uname)" == "Darwin" ]]; then @@ -54,6 +52,8 @@ if [[ ("$1" == "firefox") || ("$1" == "firefox/") ]]; then exit 1 fi elif [[ ("$1" == "firefox-win64") || ("$1" == "firefox-win64/") ]]; then + BUILD_NUMBER=$(cat "$PWD/firefox/BUILD_NUMBER") + BROWSER_NAME="firefox" if [[ "$(uname)" == MINGW* ]]; then BLOB_NAME="firefox-win64.zip" ALIAS="ff-win64 r$BUILD_NUMBER"