Browse Source

feat: update go script to 1.13

Kyle P Davis 6 years ago
parent
commit
c0a08289f1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gimmes/go

+ 2 - 2
gimmes/go

@@ -3,7 +3,7 @@ set -o errexit -o pipefail
 
 [[ "$GOROOT" ]]  ||  export GOROOT="$HOME/golang"
 [[ "$GOPATH" ]]  ||  export GOPATH="$HOME/go"
-PKG_VER="1.9"
+PKG_VER="1.13"
 
 gimme \
 	curl \
@@ -14,7 +14,7 @@ gimme \
 if ! has go; then
 	if [[ "$OS" = "Darwin" ]]; then
 
-		GOROOT="" gimme_pkg go --with-cc-common
+		GOROOT="" gimme_pkg go
 
 	else