Skip to content
This repository was archived by the owner on Apr 14, 2021. It is now read-only.

Commit 5e09a17

Browse files
committed
Issue #93: fix invalid -z option in come CI systems
1 parent c75d829 commit 5e09a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ define dist
142142
@echo -n ">> BUILD, $(1)/$(2) "
143143
@(GOOS=$(1) GOARCH=$(2) go build -o $(3) $(LDFLAGS))
144144
@cp $(3) build/distributions/fritzctl-$(1)-$(2)$(4)
145-
@cd build/distributions && shasum -a 256 "fritzctl-$(1)-$(2)$(4)" | tee "fritzctl-$(1)-$(2)$(4).sha256" | cut -b 1-40 -z
145+
@cd build/distributions && shasum -a 256 "fritzctl-$(1)-$(2)$(4)" | tee "fritzctl-$(1)-$(2)$(4).sha256" | cut -b 1-64 | tr -d "\n"
146146
@$(call ok)
147147
endef
148148

0 commit comments

Comments
 (0)