Skip to content

Commit 313f39b

Browse files
committed
..
1 parent 1e6b0b6 commit 313f39b

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/macos-smoke.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ jobs:
2323
shell: bash
2424
run: |
2525
set -euo pipefail
26-
chmod +x installers/install.sh
2726
export FERRET_INSTALL_DIR="$RUNNER_TEMP/ferret"
28-
installers/install.sh
27+
INSTALLER="$RUNNER_TEMP/install-ferret.sh"
28+
curl -fsSL "https://raw.githubusercontent.com/Ferret-Language/Ferret/main/installers/install.sh" -o "$INSTALLER"
29+
chmod +x "$INSTALLER"
30+
"$INSTALLER"
2931
echo "$FERRET_INSTALL_DIR/core/bin" >> "$GITHUB_PATH"
3032
3133
- name: Verify Ferret on PATH
@@ -46,4 +48,4 @@ jobs:
4648
mkdir -p "$WORKDIR"
4749
cd "$WORKDIR"
4850
49-
ferret init smokeproject <<'EOF'
51+
ferret init smokeproject <<'EOF'

0 commit comments

Comments
 (0)