From a06f9863e7affa812e97fcb803ba5c45f503e556 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 6fc93ddfd..56504595f 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