Skip to content

Commit

Permalink
make: no need to use find, can specify the directory where the go fil…
Browse files Browse the repository at this point in the history
…es are
  • Loading branch information
pnx committed Jul 25, 2024
1 parent e038be5 commit 18a8fee
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 @@ -20,7 +20,7 @@ build/$(PROGRAM) :
tools : build/thalos-tools

build/thalos-tools :
$(GO) build $(GOBUILDFLAGS) -o $@ $(shell find cmd/tools -type f -name *.go)
$(GO) build $(GOBUILDFLAGS) -o $@ ./cmd/tools/

docker-image:
docker image build --build-arg VERSION=$(PROGRAM_VERSION) -t $(DOCKER_IMAGE_REPO):$(DOCKER_IMAGE_TAG) docker
Expand Down

0 comments on commit 18a8fee

Please sign in to comment.