From b3ac750c04c44e3829a327f6883404fbf58c6bbf Mon Sep 17 00:00:00 2001 From: Evan Owen Date: Mon, 21 Jul 2014 09:17:28 -0700 Subject: [PATCH] Remove extra 'go' from download URL path GO_BINARY_FILE already contains the full "go1.3..." path. Signed-off-by: Evan Owen --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 333837b..4bcd2eb 100755 --- a/scripts/install +++ b/scripts/install @@ -182,7 +182,7 @@ download_binary() { if [[ $? -ne 0 ]]; then display_error "Failed to download binary go from http://golang.org. Trying https://go.googlecode.com" - GO_BINARY_URL="https://go.googlecode.com/files/go${GO_BINARY_FILE}" + GO_BINARY_URL="https://go.googlecode.com/files/${GO_BINARY_FILE}" curl -s -f -L $GO_BINARY_URL > ${GO_BINARY_PATH}