Skip to content

Commit

Permalink
Stop vendoring
Browse files Browse the repository at this point in the history
go mod vendor is no longer necessary; see
https://go.dev/ref/mod#vendoring for details. Dependencies will be
fulfilled using the module cache.

Signed-off-by: Stephen Kitt <[email protected]>
  • Loading branch information
skitt authored and tpantelis committed Jan 17, 2023
1 parent 1b2dce2 commit bc3ea1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ override UNIT_TEST_ARGS += test/e2e
deploy: clusters
./scripts/$@

e2e: vendor/modules.txt deploy
e2e: deploy
./scripts/$@ $(E2E_ARGS)

.PHONY: $(TARGETS) test

else
Expand Down

0 comments on commit bc3ea1b

Please sign in to comment.