aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorSamuel Marks <samuelmarks@gmail.com>2019-02-26 12:12:13 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:59 +0800
commit1b4f1f2804f4975f58248d8933e5f74a7f827e0d (patch)
treee5163bb4e19d244fa658208d81e515560bc7f876 /internal
parent47951b804128afa41197e9bdea7f0b6f24763f22 (diff)
downloaddexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar
dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.gz
dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.bz2
dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.lz
dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.xz
dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.zst
dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.zip
travis, appveyor, Dockerfile: upgrade to Go 1.12
Include serveral DEXON specific fixes.
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...)