We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e6b0b6 commit 313f39bCopy full SHA for 313f39b
1 file changed
.github/workflows/macos-smoke.yml
@@ -23,9 +23,11 @@ jobs:
23
shell: bash
24
run: |
25
set -euo pipefail
26
- chmod +x installers/install.sh
27
export FERRET_INSTALL_DIR="$RUNNER_TEMP/ferret"
28
- installers/install.sh
+ INSTALLER="$RUNNER_TEMP/install-ferret.sh"
+ curl -fsSL "https://raw.githubusercontent.com/Ferret-Language/Ferret/main/installers/install.sh" -o "$INSTALLER"
29
+ chmod +x "$INSTALLER"
30
+ "$INSTALLER"
31
echo "$FERRET_INSTALL_DIR/core/bin" >> "$GITHUB_PATH"
32
33
- name: Verify Ferret on PATH
@@ -46,4 +48,4 @@ jobs:
46
48
mkdir -p "$WORKDIR"
47
49
cd "$WORKDIR"
50
- ferret init smokeproject <<'EOF'
51
+ ferret init smokeproject <<'EOF'
0 commit comments