Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-02-26 14:18:48 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-02-26 19:33:11 +0300
commit33ae62108325f703f1eaeabef1e8a80950229415 (patch)
tree85350195305dd392ec77cb331d8f07f1ef673bff /magefile.go
parent1352bc880df4cd25eff65843973fcc0dd21b6304 (diff)
Update to Go 1.14 and 1.13.8
Fixes #6958
Diffstat (limited to 'magefile.go')
-rw-r--r--magefile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/magefile.go b/magefile.go
index 38e8e057d..f913cec17 100644
--- a/magefile.go
+++ b/magefile.go
@@ -320,7 +320,7 @@ func runCmd(env map[string]string, cmd string, args ...string) error {
}
func isGoLatest() bool {
- return strings.Contains(runtime.Version(), "1.13")
+ return strings.Contains(runtime.Version(), "1.14")
}
func isCI() bool {