We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd2fe8 commit 60764d6Copy full SHA for 60764d6
.ci/scripts/setup-macos.sh
@@ -23,8 +23,8 @@ install_buck() {
23
brew install zstd
24
fi
25
26
- if ! command -v wget &> /dev/null; then
27
- brew install wget
+ if ! command -v curl &> /dev/null; then
+ brew install curl
28
29
30
pushd .ci/docker
@@ -37,7 +37,7 @@ install_buck() {
37
# --version doesn't say anything w.r.t its release version, i.e. 2024-02-15.
38
# See D53878006 for more details.
39
BUCK2=buck2-aarch64-apple-darwin.zst
40
- wget -q "https://ossci-macos.s3.amazonaws.com/${BUCK2}"
+ curl -s "https://ossci-macos.s3.amazonaws.com/${BUCK2}" -o "${BUCK2}"
41
42
zstd -d "${BUCK2}" -o buck2
43
0 commit comments