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.
28 lines
685 B
28 lines
685 B
#!/bin/bash |
|
|
|
GO_AMD64=https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz |
|
GO_X86=https://storage.googleapis.com/golang/go1.8.3.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 -u v2ray.com/core/... |
|
go get -u v2ray.com/ext/... |
|
rm $GOPATH/bin/vbuild |
|
go install v2ray.com/ext/tools/build/vbuild |
|
$GOPATH/bin/vbuild
|
|
|