Przeglądaj źródła

Update install.sh

kxjhlele 10 lat temu
rodzic
commit
d86af91c94
1 zmienionych plików z 2 dodań i 3 usunięć
  1. 2 3
      release/install.sh

+ 2 - 3
release/install.sh

@@ -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