From 8f6f3ac199b77c5ec5ae1dee3b7dd4f03a60ea7e Mon Sep 17 00:00:00 2001 From: Sergey Alirzaev Date: Sun, 31 Mar 2019 01:09:57 +0300 Subject: util/genbuild_h: Do not print PGP verification results in `git log` output Signed-off-by: Sergey Alirzaev Change-Id: I102ecc79bb649a67661c3d22988453dc7741acda Reviewed-on: https://review.coreboot.org/c/coreboot/+/32129 Reviewed-by: Patrick Georgi Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- util/genbuild_h/genbuild_h.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/genbuild_h/genbuild_h.sh b/util/genbuild_h/genbuild_h.sh index 340de3501a..5c45b2b1f8 100755 --- a/util/genbuild_h/genbuild_h.sh +++ b/util/genbuild_h/genbuild_h.sh @@ -27,9 +27,9 @@ if [ "${BUILD_TIMELESS}" = "1" ]; then TIMESOURCE="fixed" DATE=0 elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then - GITREV=$(LANG= git log -1 --format=format:%h) + GITREV=$(LANG= git log --no-show-signature -1 --format=format:%h) TIMESOURCE=git - DATE=$(git log --pretty=format:%ct -1) + DATE=$(git log --no-show-signature --pretty=format:%ct -1) else GITREV=Unknown TIMESOURCE="date" -- cgit v1.2.3