From f903877cfb11b33d7e283ea52f6f10b9e3950064 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Tue, 30 May 2023 17:49:41 -0600 Subject: [PATCH] scripts: Disable showing signature when getting date Fixes building when `log.showSignature` is enabled. Signed-off-by: Tim Crawford --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 1bb1d2b..ef6333a 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -19,7 +19,7 @@ then fi MODEL_DIR="$(realpath "models/${MODEL}")" -DATE="$(git show --format="%cd" --date="format:%Y-%m-%d" --no-patch)" +DATE="$(git show --format="%cd" --date="format:%Y-%m-%d" --no-patch --no-show-signature)" REV="$(git describe --always --dirty --abbrev=7)" VERSION="${DATE}_${REV}" echo "Building '${VERSION}' for '${MODEL}'"