Skip to content

Commit

Permalink
Use ${EXT_BIN_DIR} in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ronenh committed Aug 8, 2024
1 parent 0d662c2 commit f10cce0
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 @@ -36,11 +36,11 @@ build:

lint:
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)"
@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} .ext/bin/golangci-lint run {}/... -c .golangci.yaml
@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} ${EXT_BIN_DIR}/golangci-lint run {}/... -c .golangci.yaml

test:
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)"
@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} .ext/bin/gotestsum --format short-verbose -- -count=1 -v {}/...
@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} ${EXT_BIN_DIR}/gotestsum --format short-verbose -- -count=1 -v {}/...

.PHONY: vault-login
vault-login:
Expand Down

0 comments on commit f10cce0

Please sign in to comment.