From e903c3b7d5062b03ddf2fcad73bbaefeefc4dca2 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Wed, 20 Nov 2024 13:31:06 -0800 Subject: [PATCH] ci: bootstrap.sh: musl download of bun no longer has to be special-cased (#15265) --- scripts/bootstrap.sh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index c5f59ca116..91b8292e40 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -589,25 +589,6 @@ install_nodejs_headers() { } install_bun() { - case "$os-$abi" in - linux-musl) - case "$arch" in - x64) - exe="$(download_file https://pub-61e0d0e2da4146a099e4545a59a9f0f7.r2.dev/bun-musl-x64)" - ;; - aarch64) - exe="$(download_file https://pub-61e0d0e2da4146a099e4545a59a9f0f7.r2.dev/bun-musl-arm64)" - ;; - esac - execute chmod +x "$exe" - execute mkdir -p "$home/.bun/bin" - execute mv "$exe" "$home/.bun/bin/bun" - execute ln -fs "$home/.bun/bin/bun" "$home/.bun/bin/bunx" - link_to_bin "$home/.bun/bin" - return - ;; - esac - bash="$(require bash)" script=$(download_file "https://bun.sh/install")