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 b4bdaef commit b07bd35Copy full SHA for b07bd35
build-webapp.sh
@@ -23,6 +23,9 @@ if [[ -d "$DEST_DIR" ]]; then
23
fi
24
25
# from the namada-interface README, modified for compatibility
26
+apt-get update
27
+apt-get install build-essential
28
+
29
apt-get install -y curl
30
31
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
@@ -39,8 +42,8 @@ curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
39
42
yarn || exit 1
40
43
yarn prepare || exit 1
41
44
-yarn --cwd ${PKG_DIR} wasm:build || exit 1
-yarn --cwd ${PKG_DIR} build || exit 1
45
+yarn --cwd ${PKG_DIR} wasm:build:multicore || exit 1
46
+yarn --cwd ${PKG_DIR} build:only || exit 1
47
48
if [[ ! -d "$OUTPUT_DIR" ]]; then
49
echo "Missing output directory: $OUTPUT_DIR" 1>&2
0 commit comments