From 498508f2f14191880b83e56ab72ce15523ca8c80 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Thu, 1 Jun 2023 11:26:11 -0600 Subject: [PATCH] scripts: Disable showing signature when getting date Fixes building when `log.showSignature` is enabled. Signed-off-by: Tim Crawford --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79487cd..d37f620 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ all: @exit 1 else # Calculate version -DATE=$(shell git show --format="%cd" --date="format:%Y-%m-%d" --no-patch) +DATE=$(shell git show --format="%cd" --date="format:%Y-%m-%d" --no-patch --no-show-signature) REV=$(shell git describe --abbrev=7 --always --dirty) VERSION?=$(DATE)_$(REV)