From b8b3b42330dd8c986af1bff893af12f6568d20dc Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Sat, 25 Nov 2023 01:43:00 +0000 Subject: [PATCH] Fix installing ponyc dependency Curling against cloudsmith isn't working. It downloads nothing. wget is working. --- .ci-scripts/MacOS-arm64-install-pony-tools.bash | 2 +- .ci-scripts/macOS-x86-install-pony-tools.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci-scripts/MacOS-arm64-install-pony-tools.bash b/.ci-scripts/MacOS-arm64-install-pony-tools.bash index 99202979..62673f23 100644 --- a/.ci-scripts/MacOS-arm64-install-pony-tools.bash +++ b/.ci-scripts/MacOS-arm64-install-pony-tools.bash @@ -17,6 +17,6 @@ esac pushd /tmp || exit mkdir ponyc -curl https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz --output ponyc.tar.gz +wget https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz -O ponyc.tar.gz tar xzf ponyc.tar.gz -C ponyc --strip-components=1 popd || exit diff --git a/.ci-scripts/macOS-x86-install-pony-tools.bash b/.ci-scripts/macOS-x86-install-pony-tools.bash index 42f13f16..a1eff98b 100644 --- a/.ci-scripts/macOS-x86-install-pony-tools.bash +++ b/.ci-scripts/macOS-x86-install-pony-tools.bash @@ -17,6 +17,6 @@ esac pushd /tmp || exit mkdir ponyc -curl "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-x86-64-apple-darwin.tar.gz" --output ponyc.tar.gz +wget "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-x86-64-apple-darwin.tar.gz" -O ponyc.tar.gz tar xzf ponyc.tar.gz -C ponyc --strip-components=1 popd || exit