Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 3ec7097

Browse files
authored
Fix wasm-opt untar (#239)
1 parent 5297d82 commit 3ec7097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wasm-utils/install-wasm-binaries.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
6666

6767
for bin in "${binaries[@]}"; do
6868
echo "Installing $bin into ~/.cargo/bin"
69-
tar -xvjf "wasm-binaries.tbz2 wasm-install/bin/$bin" >/dev/null
69+
tar -xvjf "wasm-binaries.tbz2" "wasm-install/bin/$bin" >/dev/null
7070
cp -f "wasm-install/bin/$bin" ~/.cargo/bin/
7171
done
7272
popd >/dev/null

0 commit comments

Comments
 (0)