Unverified Commit 97168376 authored by WeZZard's avatar WeZZard Committed by GitHub

fix(avit): disable `log.showSignatures` in `_git_time_since_commit` (#10072)

parent 0ca2e48e
......@@ -31,7 +31,7 @@ function _git_time_since_commit() {
local last_commit now seconds_since_last_commit
local minutes hours days years commit_age
# Only proceed if there is actually a commit.
if last_commit=$(git log --pretty=format:'%at' -1 2> /dev/null); then
if last_commit=$(command git -c log.showSignatures=false log --format='%at' -1 2>/dev/null); then
now=$(date +%s)
seconds_since_last_commit=$((now-last_commit))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment