We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa61a07 commit 7133a80Copy full SHA for 7133a80
wasicontainer/install-wasi.sh
@@ -23,7 +23,7 @@ for VERSION in "${WASI_SDK_VERSIONS[@]}"; do
23
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip
24
done
25
26
-# For Python 3.13 as Tools/wasm/wasi.py expects /opt/wasi-sdk.
+# For Python 3.13 as Tools/wasm/wasi.py expects /opt/wasi-sdk by default.
27
ln -s ${WASI_SDK_ROOT}/wasi-sdk-24.0*/ /opt/wasi-sdk
28
29
@@ -41,4 +41,5 @@ curl --location $URL |
41
xz --decompress |
42
tar --strip-components 1 --directory ${WASMTIME_HOME} -x
43
44
-ln -s ${WASMTIME_HOME} /usr/local/bin
+# Put `wasmtime` on $PATH.
45
+ln -s ${WASMTIME_HOME}/wasmtime* /usr/local/bin
0 commit comments