Skip to content

Commit

Permalink
Make go mod download not-fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
tstromberg committed May 22, 2019
1 parent 6b14fc1 commit bb82039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -eu -o pipefail
exitcode=0

echo "= go mod ================================================================"
go mod download 2>&1 | grep -v "go: finding"
go mod download 2>&1 | grep -v "go: finding" || true
go mod tidy -v && echo ok || ((exitcode+=2))

echo "= make lint ============================================================="
Expand Down

0 comments on commit bb82039

Please sign in to comment.