From 79426dc3adbfbd9dce3d6ed7516e153b825045dc Mon Sep 17 00:00:00 2001 From: Matt Schultz <975680+schultz-is@users.noreply.github.com> Date: Mon, 25 Apr 2022 13:47:55 -0500 Subject: [PATCH] Don't show the signature for git commits in the build_date script (#15165) --- scripts/build_date.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_date.sh b/scripts/build_date.sh index 6fc93ddfda..56504595f8 100755 --- a/scripts/build_date.sh +++ b/scripts/build_date.sh @@ -3,4 +3,4 @@ DATE_FORMAT="%Y-%m-%dT%H:%M:%SZ" # we're using this for build date because it's stable across platform builds -git show -s --format=%cd --date=format:"$DATE_FORMAT" HEAD +git show --no-show-signature -s --format=%cd --date=format:"$DATE_FORMAT" HEAD