You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We do rustup target add wasm32-unknown-unknown --toolchain nightly in wasm-pack build, but that will fail if the nightly toolchain is not already installed:
$ rustup target add wasm32-unknown-unknown --toolchain nightly
error: toolchain 'nightly-x86_64-unknown-linux-gnu' is not installed
Before we run that command, we should run rustup toolchain add nightly.
The text was updated successfully, but these errors were encountered:
We do
rustup target add wasm32-unknown-unknown --toolchain nightly
inwasm-pack build
, but that will fail if the nightly toolchain is not already installed:Before we run that command, we should run
rustup toolchain add nightly
.The text was updated successfully, but these errors were encountered: