Skip to content

Commit 33d3f3a

Browse files
committed
.github/workflows/ci.yml: fix yaml syntax error.
1 parent 85808fd commit 33d3f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Install Wasmtime
4747
if: ${{ runner.os == 'Linux' }}
4848
shell: bash
49-
run: [ -d ~/.wasmtime/bin ] || (curl https://wasmtime.dev/install.sh -sSf | bash)
49+
run: if [ ! -d ~/.wasmtime/bin ]; then curl https://wasmtime.dev/install.sh -sSf | bash; fi
5050

5151
- name: Rust
5252
shell: bash

0 commit comments

Comments
 (0)