Skip to content

Commit b8b3b42

Browse files
committed
Fix installing ponyc dependency
Curling against cloudsmith isn't working. It downloads nothing. wget is working.
1 parent f156176 commit b8b3b42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci-scripts/MacOS-arm64-install-pony-tools.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ esac
1717

1818
pushd /tmp || exit
1919
mkdir ponyc
20-
curl https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz --output ponyc.tar.gz
20+
wget https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz -O ponyc.tar.gz
2121
tar xzf ponyc.tar.gz -C ponyc --strip-components=1
2222
popd || exit

.ci-scripts/macOS-x86-install-pony-tools.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ esac
1717

1818
pushd /tmp || exit
1919
mkdir ponyc
20-
curl "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-x86-64-apple-darwin.tar.gz" --output ponyc.tar.gz
20+
wget "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-x86-64-apple-darwin.tar.gz" -O ponyc.tar.gz
2121
tar xzf ponyc.tar.gz -C ponyc --strip-components=1
2222
popd || exit

0 commit comments

Comments
 (0)