1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00
v2fly/release/install.sh
2018-02-21 10:36:41 +01:00

29 lines
683 B
Bash
Executable File

#!/bin/bash
GO_AMD64=https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz
GO_X86=https://storage.googleapis.com/golang/go1.10.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