Skip to content

Commit dbc7e3e

Browse files
authored
GH-46242: [Release] Don't show gpg signature when getting release time (#46243)
### Rationale for this change post-12-bumb-versions.sh doesn't work with git's log.showSignature=true ### What changes are included in this PR? Don't show the signature ### Are these changes tested? CI, locally ### Are there any user-facing changes? No * GitHub Issue: #46242 Authored-by: Jacob Wujciak-Jens <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 0580dee commit dbc7e3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tasks/linux-packages/helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def git_directory?(directory)
2828
def latest_commit_time(git_directory)
2929
return nil unless git_directory?(git_directory)
3030
cd(git_directory) do
31-
return Time.iso8601(`git log -n 1 --format=%aI`.chomp).utc
31+
return Time.iso8601(`git log -n 1 --no-show-signature --format=%aI`.chomp).utc
3232
end
3333
end
3434

0 commit comments

Comments
 (0)