diff --git a/Makefile b/Makefile index 71aaa40e..744d866c 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,10 @@ RELEASE_FILE ?= release.txt TARGZ ?= true build: - CGO_ENABLED=0 go build -tags base,std,hazelcastinternal,hazelcastinternaltest -ldflags "$(LDFLAGS)" -o build/$(BINARY_NAME) ./cmd/clc + CGO_ENABLED=0 go build -tags base,std,hazelcastinternal,hazelcastinternaltest -ldflags "$(LDFLAGS)" -trimpath -o build/$(BINARY_NAME) ./cmd/clc build-dmt: - CGO_ENABLED=0 go build -tags base,migration,config,home,version,hazelcastinternal,hazelcastinternaltest -ldflags "$(LDFLAGS)" -o build/$(BINARY_NAME) ./cmd/clc + CGO_ENABLED=0 go build -tags base,migration,config,home,version,hazelcastinternal,hazelcastinternaltest -ldflags "$(LDFLAGS)" -trimpath -o build/$(BINARY_NAME) ./cmd/clc test: go test -tags base,std,hazelcastinternal,hazelcastinternaltest -p 1 $(TEST_FLAGS) ./...