Skip to content

Commit

Permalink
try turning off deps in go list
Browse files Browse the repository at this point in the history
  • Loading branch information
pintohutch committed Nov 21, 2023
1 parent 4e2c613 commit 073b7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ ifdef GOLANGCI_LINT
@echo ">> running golangci-lint"
# 'go list' needs to be executed before staticcheck to prepopulate the modules cache.
# Otherwise staticcheck might fail randomly for some reason not yet explained.
$(GO) list -e -compiled -test=true -export=false -deps=true -find=false -tags= -- ./... > /dev/null
$(GO) list -e -compiled -test=true -export=false -deps=false -find=false -tags= -- ./... > /dev/null
$(GOLANGCI_LINT) run $(GOLANGCI_LINT_OPTS) $(pkgs)
endif

Expand Down

0 comments on commit 073b7ec

Please sign in to comment.