1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/release/install.sh

28 lines
645 B
Bash
Raw Normal View History

2015-09-18 09:19:52 +00:00
#!/bin/bash
2016-04-21 10:30:33 +00:00
GO_AMD64=https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz
GO_X86=https://storage.googleapis.com/golang/go1.6.2.linux-386.tar.gz
2015-10-02 09:01:12 +00:00
ARCH=$(uname -m)
GO_CUR=${GO_AMD64}
2015-10-02 09:05:44 +00:00
if [ "$ARCH" == "i686" ] || [ "$ARCH" == "i386" ]; then
2015-10-02 09:01:12 +00:00
GO_CUR=${GO_X86}
fi
which git > /dev/null || apt-get install git -y
2015-09-18 09:19:52 +00:00
if [ -z "$GOPATH" ]; then
2015-10-02 09:01:12 +00:00
curl -o go_latest.tar.gz ${GO_CUR}
2015-09-18 09:19:52 +00:00
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
2015-09-18 09:19:52 +00:00
export GOPATH=/v2ray
fi
2016-08-20 18:55:45 +00:00
go get -u v2ray.com/core
2015-10-18 09:57:43 +00:00
rm $GOPATH/bin/build
2016-08-20 18:55:45 +00:00
go install v2ray.com/core/tools/build
2015-10-18 09:57:43 +00:00
$GOPATH/bin/build