diff options
| author | Eric Biggers <ebiggers@google.com> | 2019-11-26 16:52:43 -0800 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2019-11-26 17:13:04 -0800 |
| commit | 9c2cc186ecce7d0bb6e220b0312222ce93090790 (patch) | |
| tree | 2cd2d2d2c5ccb41682f068ef2cf64f51848be66e | |
| parent | fd6a2bc70ddd15e83c40e9868dd20e384ace287d (diff) | |
travis: set GO111MODULE=on for 'go get'
Ensure that the environmental variable GO111MODULE is set to "on" when
running 'go get'. This fixes a CI failure with Go 1.11 and 1.12.
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 82dbc3a..e19ffa8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ jobs: name: Build and Unit Tests install: skip script: - - go get github.com/google/fscrypt/cmd/fscrypt + - GO111MODULE=on go get github.com/google/fscrypt/cmd/fscrypt - make - <<: *build |