refactor(tools): echo the binary path after build tools (#21969)

This commit is contained in:
tianyeyouyou 2024-09-30 13:38:28 +08:00 committed by GitHub
parent 21b3a26254
commit 1b32cc86f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 0 deletions

View File

@ -4,9 +4,11 @@ all: confix condiff test
confix:
go build -mod=readonly ./cmd/confix
@echo "confix binary has been successfully built in tools/confix/confix"
condiff:
go build -mod=readonly ./cmd/condiff
@echo "condiff binary has been successfully built in tools/confix/condiff"
test:
go test -mod=readonly -race ./...

View File

@ -4,6 +4,7 @@ all: cosmovisor test
cosmovisor:
go build -mod=readonly ./cmd/cosmovisor
@echo "cosmovisor binary has been successfully built in tools/cosmovisor/cosmovisor"
test:
go test -mod=readonly -race ./...

View File

@ -4,6 +4,7 @@ all: hubl test
hubl:
go build -mod=readonly ./cmd/hubl
@echo "hubl binary has been successfully built in tools/hubl/hubl"
test:
go test -mod=readonly -race ./...