aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorSamuel Marks <samuelmarks@gmail.com>2019-02-26 12:12:13 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-02-27 20:21:02 +0800
commite43bc36226692fc128b5be38802efdd049e9db4a (patch)
tree072050d8a2972d8028adb322b1c729e3f74e62eb /internal
parent7ebd2fa5dbbc2944eae5bf5844d26c9840e7b12e (diff)
downloadgo-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.tar
go-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.tar.gz
go-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.tar.bz2
go-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.tar.lz
go-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.tar.xz
go-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.tar.zst
go-tangerine-e43bc36226692fc128b5be38802efdd049e9db4a.zip
travis, appveyor, Dockerfile: upgrade to Go 1.12
Diffstat (limited to 'internal')
-rw-r--r--internal/build/util.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/build/util.go b/internal/build/util.go
index a41ecfbed..b34371c2d 100644
--- a/internal/build/util.go
+++ b/internal/build/util.go
@@ -143,9 +143,9 @@ func CopyFile(dst, src string, mode os.FileMode) {
// so that go commands executed by build use the same version of Go as the 'host' that runs
// build code. e.g.
//
-// /usr/lib/go-1.11/bin/go run build/ci.go ...
+// /usr/lib/go-1.12/bin/go run build/ci.go ...
//
-// runs using go 1.11 and invokes go 1.11 tools from the same GOROOT. This is also important
+// runs using go 1.12 and invokes go 1.12 tools from the same GOROOT. This is also important
// because runtime.Version checks on the host should match the tools that are run.
func GoTool(tool string, args ...string) *exec.Cmd {
args = append([]string{tool}, args...)