Skip to content

Commit 3e53db6

Browse files
committed
Fix shell quoting
Bash interprets the "&" as an instruction to run in background, even though it's in the middle of a string. That's what I get for testing this in Fish!
1 parent 27c4712 commit 3e53db6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-wasm32-wasi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
- name: Build
1818
run: |
19-
nix shell gitlab:haskell-wasm/ghc-wasm-meta?host=gitlab.haskell.org&rev=${GHC_WASM_META}#{wasmtime,wasm32-wasi-cabal-9_12,wasm32-wasi-ghc-9_12} --command \
19+
nix shell "gitlab:haskell-wasm/ghc-wasm-meta?host=gitlab.haskell.org&rev=${GHC_WASM_META}"#{wasmtime,wasm32-wasi-cabal-9_12,wasm32-wasi-ghc-9_12} --command \
2020
wasm32-wasi-cabal build
2121
2222
- name: Test
2323
run: |
24-
nix shell gitlab:haskell-wasm/ghc-wasm-meta?host=gitlab.haskell.org&rev=${GHC_WASM_META}#{wasmtime,wasm32-wasi-cabal-9_12,wasm32-wasi-ghc-9_12} --command \
24+
nix shell "gitlab:haskell-wasm/ghc-wasm-meta?host=gitlab.haskell.org&rev=${GHC_WASM_META}"#{wasmtime,wasm32-wasi-cabal-9_12,wasm32-wasi-ghc-9_12} --command \
2525
wasm32-wasi-cabal test --test-wrapper ./tests/run-wasmtime.sh

0 commit comments

Comments
 (0)