mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-01 05:29:08 +01:00
8 lines
189 B
Bash
Executable file
8 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
|