From 49c1e332d492457480e7583b9f06bae695b0a8c3 Mon Sep 17 00:00:00 2001 From: Rashiq Date: Fri, 6 Oct 2023 15:12:43 +0000 Subject: [PATCH] Fix focal build The base image is `buster` instead of previously assumed `stretch` --- script/build-deploy-tarball | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/build-deploy-tarball b/script/build-deploy-tarball index 327321c1e..164a01964 100755 --- a/script/build-deploy-tarball +++ b/script/build-deploy-tarball @@ -31,5 +31,5 @@ cp ${tarball}.gz "$BUILD_ARTIFACT_DIR"/gh-ost/ ### HACK HACK HACK HACK ### # blame @carlosmn, @mattr, @timvaillancourt and @rashiq # Allow builds on buster to also be used for focal -focal_tarball_name=$(echo $(basename "${tarball}") | sed s/-stretch-/-focal-/) +focal_tarball_name=$(echo $(basename "${tarball}") | sed s/-buster-/-focal-/) cp ${tarball}.gz "$BUILD_ARTIFACT_DIR/gh-ost/${focal_tarball_name}.gz" \ No newline at end of file