Skip to content

Commit 843405b

Browse files
committed
travis: fix gometalinter
Apparently --update doesn't play nicely anymore, and has been removed from the guidance for gometalinter usage. Let's get rid of it since it's breaking every travis build and appears to be redundant anyway. Signed-off-by: Jonathan Boulle <jonathanboulle@gmail.com>
1 parent fd1a1af commit 843405b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.tool/lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -o pipefail
66

77
if [ ! $(command -v gometalinter) ]; then
88
go get -u github.com/alecthomas/gometalinter
9-
gometalinter --update --install
9+
gometalinter --install
1010
fi
1111

1212
for d in $(find . -type d -not -iwholename '*.git*' -a -not -iname '.tool' -a -not -iwholename '*vendor*'); do

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_install:
1414
- docker pull vbatts/pandoc
1515
- make install.tools
1616
- go get -u github.com/alecthomas/gometalinter
17-
- gometalinter --install --update
17+
- gometalinter --install
1818
- go get -t -d ./...
1919

2020
install: true

0 commit comments

Comments
 (0)