diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-02-27 21:09:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-27 21:09:59 +0800 |
commit | 505a49e689683f11326ef30af3b9bcff8f3c2b8f (patch) | |
tree | 0c009583cdaa7731dd128ded2fc85191fa71521f /internal | |
parent | 7ebd2fa5dbbc2944eae5bf5844d26c9840e7b12e (diff) | |
parent | 2b6158a51e4b4660ed4093880ed1e0a368aecce4 (diff) | |
download | go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.tar go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.tar.gz go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.tar.bz2 go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.tar.lz go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.tar.xz go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.tar.zst go-tangerine-505a49e689683f11326ef30af3b9bcff8f3c2b8f.zip |
Merge pull request #19166 from SamuelMarks/go-1.12
Upgrade to Go 1.12
Diffstat (limited to 'internal')
-rw-r--r-- | internal/build/util.go | 4 |
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...) |