From 1b32cc86f20d0d4063be8477b7e0675cb1cf6299 Mon Sep 17 00:00:00 2001 From: tianyeyouyou <150894831+tianyeyouyou@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:38:28 +0800 Subject: [PATCH] refactor(tools): echo the binary path after build tools (#21969) --- tools/confix/Makefile | 2 ++ tools/cosmovisor/Makefile | 1 + tools/hubl/Makefile | 1 + 3 files changed, 4 insertions(+) diff --git a/tools/confix/Makefile b/tools/confix/Makefile index 417b7a7c4933..5c29441e29de 100644 --- a/tools/confix/Makefile +++ b/tools/confix/Makefile @@ -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 ./... diff --git a/tools/cosmovisor/Makefile b/tools/cosmovisor/Makefile index b5a7be601e9c..94a02976acf3 100644 --- a/tools/cosmovisor/Makefile +++ b/tools/cosmovisor/Makefile @@ -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 ./... diff --git a/tools/hubl/Makefile b/tools/hubl/Makefile index a329b93e383c..3490c58dc0cb 100644 --- a/tools/hubl/Makefile +++ b/tools/hubl/Makefile @@ -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 ./...