tools: Remove redundant grep -v vendors/ (#1996)

* tools: Remove redundant grep -v vendors/

This was used in conjunction with `go list <path>`, however `go list`
already ignores the vendor directory. This made this `grep -v` redundant.

* Missed an apostrophe
This commit is contained in:
Dev Ojha
2018-07-17 21:33:00 +04:00
committed by Anton Kaliaev
parent 257622cf6b
commit 3353bb99ae
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#! /bin/bash
PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)
PKGS=$(go list github.com/tendermint/tendermint/...)
set -e