mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-02 14:09:09 +01:00
13 lines
196 B
Bash
Executable file
13 lines
196 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# build the dendrite binaries into ./bin
|
|
|
|
cd `dirname $0`/..
|
|
|
|
set -eux
|
|
|
|
export GOPATH=`pwd`/.gopath
|
|
export PATH="${GOPATH}/bin:$PATH"
|
|
|
|
go get github.com/constabulary/gb/...
|
|
gb build
|