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.
7 lines
179 B
Bash
7 lines
179 B
Bash
1 year ago
|
#!/bin/bash
|
||
|
|
||
|
cd $(git rev-parse --show-toplevel)
|
||
|
|
||
|
cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" ./docs/assets/
|
||
|
|
||
|
GOARCH=wasm GOOS=js go build -o ./docs/assets/tplprev.wasm ./tplprev
|