mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
9 lines
189 B
Bash
Executable File
9 lines
189 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
# Put installed packages into ./bin
|
|
export GOBIN=$PWD/`dirname $0`/bin
|
|
|
|
go install -v $PWD/`dirname $0`/cmd/...
|
|
|
|
GOOS=js GOARCH=wasm go build -o main.wasm ./cmd/dendritejs
|