From 5e09a17e1ebf5e10d667df40b72bd681dc98c2e6 Mon Sep 17 00:00:00 2001 From: bpicode Date: Sun, 29 Oct 2017 18:18:23 +0100 Subject: [PATCH] Issue #93: fix invalid -z option in come CI systems --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 76f92583..7feab4f1 100644 --- a/Makefile +++ b/Makefile @@ -142,7 +142,7 @@ define dist @echo -n ">> BUILD, $(1)/$(2) " @(GOOS=$(1) GOARCH=$(2) go build -o $(3) $(LDFLAGS)) @cp $(3) build/distributions/fritzctl-$(1)-$(2)$(4) - @cd build/distributions && shasum -a 256 "fritzctl-$(1)-$(2)$(4)" | tee "fritzctl-$(1)-$(2)$(4).sha256" | cut -b 1-40 -z + @cd build/distributions && shasum -a 256 "fritzctl-$(1)-$(2)$(4)" | tee "fritzctl-$(1)-$(2)$(4).sha256" | cut -b 1-64 | tr -d "\n" @$(call ok) endef