diff options
author | Bjørn Erik Pedersen <[email protected]> | 2018-08-28 11:00:59 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2018-08-28 11:22:50 +0200 |
commit | c7f057797ca7bfc781d5a2bbf181bb52360f160f (patch) | |
tree | 79b50404c89f7b94531ac2ac74ae7a2d91320fe7 /.travis.yml | |
parent | 08d14113b60ff70ffe922e8098e289b099a70e0f (diff) | |
download | hugo-c7f057797ca7bfc781d5a2bbf181bb52360f160f.tar.gz hugo-c7f057797ca7bfc781d5a2bbf181bb52360f160f.zip |
travis: Set GO111MODULE=on for mage install
See #5115
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 7058711be..7c2948f49 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,9 +16,8 @@ matrix: - go: tip fast_finish: true install: - - go get github.com/magefile/mage - - mage -v vendor -script: + - env GO111MODULE=on go get github.com/magefile/mage + script: - mage -v test - mage -v check - mage -v hugo |