mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
14 lines
196 B
Bash
Executable File
14 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
|