1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

make: no need to use find, can specify the directory where the go files are

This commit is contained in:
Henrik Hautakoski 2024-07-25 19:36:51 +02:00
parent e038be5324
commit 18a8feea9e

View file

@ -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