Skip to content

Commit

Permalink
Fix install command in travis config
Browse files Browse the repository at this point in the history
The `go mod install` command does not exist - this was probably meant to
be `go mod download`.
  • Loading branch information
mjq authored and Matt Quinn committed Mar 30, 2021
1 parent c87fdce commit 6b7905c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go:
- 1.14

install:
- go mod install
- go mod download

script:
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
Expand Down

0 comments on commit 6b7905c

Please sign in to comment.