From 982a26c8354161b221441dfb7141b2de5d3c413f Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Tue, 12 Oct 2021 17:15:08 +0200 Subject: [PATCH] jenkins/sdk: add default `DOWNLOAD_ROOT` Otherwise, the variable is empty and it creates errors later. Default value is `gs://flatcar-jenkins`. Not `GS_DEVEL_ROOT` because if we check the previous behavior, `DOWNLOAD_ROOT` was hardcoded with: ```shell DOWNLOAD_ROOT_SDK=https://storage.googleapis.com/flatcar-jenkins/sdk ``` Signed-off-by: Mathieu Tortuyaux --- jenkins/sdk.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins/sdk.sh b/jenkins/sdk.sh index a2d4872e46..d24df226cd 100755 --- a/jenkins/sdk.sh +++ b/jenkins/sdk.sh @@ -27,6 +27,7 @@ then fi fi +DOWNLOAD_ROOT=${DOWNLOAD_ROOT:-"gs://flatcar-jenkins"} DOWNLOAD_ROOT_SDK="${DOWNLOAD_ROOT}/sdk" # We do not use a nightly SDK as seed for bootstrapping because the next major Alpha SDK release would also have to use the last published Alpha release SDK as seed.