mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
698 B
26 lines
698 B
#!/bin/bash |
|
|
|
GO_AMD64=https://storage.googleapis.com/golang/go1.11.1.linux-amd64.tar.gz |
|
GO_X86=https://storage.googleapis.com/golang/go1.11.1.linux-386.tar.gz |
|
ARCH=$(uname -m) |
|
GO_CUR=${GO_AMD64} |
|
|
|
if [ "$ARCH" == "i686" ] || [ "$ARCH" == "i386" ]; then |
|
GO_CUR=${GO_X86} |
|
fi |
|
|
|
which git > /dev/null || apt-get install git -y |
|
|
|
if [ -z "$GOPATH" ]; then |
|
curl -o go_latest.tar.gz ${GO_CUR} |
|
tar -C /usr/local -xzf go_latest.tar.gz |
|
rm go_latest.tar.gz |
|
export PATH=$PATH:/usr/local/go/bin |
|
|
|
mkdir /v2ray &> /dev/null |
|
export GOPATH=/v2ray |
|
fi |
|
|
|
go get -insecure -u v2ray.com/core/... |
|
go build -o $GOPATH/bin/v2ray v2ray.com/core/main |
|
go build -o $GOPATH/bin/v2ctl v2ray.com/core/infra/control/main
|
|
|