diff options
author | Sergey Alirzaev <zl29ah@gmail.com> | 2019-03-31 01:09:57 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-04-11 12:07:51 +0000 |
commit | 8f6f3ac199b77c5ec5ae1dee3b7dd4f03a60ea7e (patch) | |
tree | 8289c301737d5b83f5c2315fbf6da32c63c3be8f /util/genbuild_h | |
parent | 5c76ed66b8ccbcf9bd6f868d0635a0c60d7c10e6 (diff) | |
download | coreboot-8f6f3ac199b77c5ec5ae1dee3b7dd4f03a60ea7e.tar.xz |
util/genbuild_h: Do not print PGP verification results in `git log` output
Signed-off-by: Sergey Alirzaev <zl29ah@gmail.com>
Change-Id: I102ecc79bb649a67661c3d22988453dc7741acda
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32129
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/genbuild_h')
-rwxr-xr-x | util/genbuild_h/genbuild_h.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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" |