1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

Merge pull request #56 from kxjhlele/patch-4

Update install.sh
This commit is contained in:
V2 Ray 2015-12-06 07:09:37 +01:00
commit 4325f273a0

View File

@ -1,7 +1,7 @@
#!/bin/bash
GO_AMD64=https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz
GO_X86=https://storage.googleapis.com/golang/go1.5.1.linux-386.tar.gz
GO_AMD64=https://storage.googleapis.com/golang/go1.5.2.linux-amd64.tar.gz
GO_X86=https://storage.googleapis.com/golang/go1.5.2.linux-386.tar.gz
ARCH=$(uname -m)
GO_CUR=${GO_AMD64}
@ -19,7 +19,6 @@ if [ git_not_installed ]; then
apt-get install git -y
fi
if [ -z "$GOPATH" ]; then
curl -o go_latest.tar.gz ${GO_CUR}
tar -C /usr/local -xzf go_latest.tar.gz