11 lines
293 B
Bash
11 lines
293 B
Bash
#!/usr/bin/env sh
|
|
|
|
go env -w GO111MODULE=on
|
|
go env -w GOPROXY=https://goproxy.cn,direct
|
|
go get -u github.com/gobuffalo/packr/packr
|
|
cd /code/bitxhub || exit
|
|
make install
|
|
cd internal/plugins || exit
|
|
make plugins
|
|
mkdir -p /code/bitxhub/bin
|
|
cp /go/bin/bitxhub /code/bitxhub/bin/bitxhub_linux-amd64 |