You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
152 B
Bash
14 lines
152 B
Bash
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
2 years ago
|
set -ex
|
||
|
|
||
|
cd "$(git rev-parse --show-toplevel)"
|
||
2 years ago
|
|
||
|
pushd ./src/QmcWasm
|
||
|
bash build-wasm
|
||
|
popd
|
||
|
|
||
2 years ago
|
pushd ./src/KgmWasm
|
||
2 years ago
|
bash build-wasm
|
||
|
popd
|