Skip to content

Commit 7133a80

Browse files
committed
Fix symlinking wasmtime
1 parent aa61a07 commit 7133a80

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

wasicontainer/install-wasi.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ for VERSION in "${WASI_SDK_VERSIONS[@]}"; do
2323
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip
2424
done
2525

26-
# For Python 3.13 as Tools/wasm/wasi.py expects /opt/wasi-sdk.
26+
# For Python 3.13 as Tools/wasm/wasi.py expects /opt/wasi-sdk by default.
2727
ln -s ${WASI_SDK_ROOT}/wasi-sdk-24.0*/ /opt/wasi-sdk
2828

2929

@@ -41,4 +41,5 @@ curl --location $URL |
4141
xz --decompress |
4242
tar --strip-components 1 --directory ${WASMTIME_HOME} -x
4343

44-
ln -s ${WASMTIME_HOME} /usr/local/bin
44+
# Put `wasmtime` on $PATH.
45+
ln -s ${WASMTIME_HOME}/wasmtime* /usr/local/bin

0 commit comments

Comments
 (0)