From 7a7e615253891b0c5552ea2aff1a5c8186e35ae3 Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Thu, 24 Mar 2022 13:14:48 +0100 Subject: Make wildcard expansion work in build env --- client/go/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'client/go/Makefile') diff --git a/client/go/Makefile b/client/go/Makefile index 63922acb518..192c9665225 100644 --- a/client/go/Makefile +++ b/client/go/Makefile @@ -53,7 +53,8 @@ dist-homebrew: # TODO(mpolden): Remove @echo when this is ready @echo gh release create v$(VERSION) --repo vespa-engine/vespa --notes-file $(CURDIR)/README.md --title "Vespa CLI $(VERSION)" \ $(DIST)/vespa-cli_$(VERSION)_sha256sums.txt \ - $(DIST)/vespa-cli_$(VERSION)_*.{zip,tar.gz} + $(DIST)/vespa-cli_$(VERSION)_*.zip \ + $(DIST)/vespa-cli_$(VERSION)_*.tar.gz dist-github: go run cond_make.go --dist-github @@ -96,7 +97,7 @@ $(DIST_TARGETS): fi dist-sha256sums: - cd $(DIST) && sha256sum vespa-cli_$(VERSION)_*.{zip,tar.gz} > vespa-cli_$(VERSION)_sha256sums.txt + sha256sum $(DIST)/vespa-cli_$(VERSION)_*.zip $(DIST)/vespa-cli_$(VERSION)_*.tar.gz | sed 's|$(DIST)/||' > $(DIST)/vespa-cli_$(VERSION)_sha256sums.txt dist-version: ifeq ($(VERSION),$(DEVEL_VERSION)) -- cgit v1.2.3