1
0
Fork 0

Update go version to go 1.13rc2

This commit is contained in:
Michael 2019-09-03 12:18:03 +02:00 committed by Traefiker Bot
parent cb7c5a8ca1
commit 3ed57e01a6
4 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ if [ -n "$SHOULD_TEST" ]; then docker version; fi
export GO_VERSION=1.12
if [ -f "./go.mod" ]; then GO_VERSION="$(grep '^go .*' go.mod | awk '{print $2}')"; export GO_VERSION; fi
if [ "${GO_VERSION}" == '1.13' ]; then export GO_VERSION=1.13rc1; fi
if [ "${GO_VERSION}" == '1.13' ]; then export GO_VERSION=1.13rc2; fi
echo "Selected Go version: ${GO_VERSION}"
if [ -f "./.semaphoreci/golang.sh" ]; then ./.semaphoreci/golang.sh; fi