Skip to content

Commit

Permalink
chore(core): Don't require installing go-licenses (#1108)
Browse files Browse the repository at this point in the history
use `go run X` instead of `go install X && X`
  • Loading branch information
dmihalcik-virtru authored Jul 8, 2024
1 parent 65cd4af commit 1ec3a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tidy:
for m in $(HAND_MODS); do (cd $$m && go mod tidy) || exit 1; done

license:
for m in $(HAND_MODS); do (cd $$m && go-licenses check --disallowed_types=forbidden --include_tests ./) || exit 1; done
for m in $(HAND_MODS); do (cd $$m && go run github.com/google/go-licenses@v1.6.0 check --disallowed_types=forbidden --include_tests ./) || exit 1; done

lint: proto-lint go-lint

Expand Down

0 comments on commit 1ec3a8f

Please sign in to comment.