From 415ba013ba6c34157e604a4839f41a25eeb0d1ea Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev Date: Tue, 28 Apr 2020 19:30:42 +0300 Subject: [PATCH] remove >> for go installation --- images/linux/scripts/installers/go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/installers/go.sh b/images/linux/scripts/installers/go.sh index 8a16eef84..516d141d4 100644 --- a/images/linux/scripts/installers/go.sh +++ b/images/linux/scripts/installers/go.sh @@ -43,7 +43,7 @@ function getFullGoVersion () { } # load golang_tags.json file -curl -s 'https://api.github.com/repos/golang/go/git/refs/tags' >> $golangTags +curl -s 'https://api.github.com/repos/golang/go/git/refs/tags' > $golangTags # Install Go versions for go in ${GO_VERSIONS}; do echo "Installing Go ${go}"