diff options
| author | Marc Cornellà <hello@mcornella.com> | 2022-01-10 19:39:05 +0100 | 
|---|---|---|
| committer | Marc Cornellà <hello@mcornella.com> | 2022-01-10 19:39:05 +0100 | 
| commit | 9c84c344d762b200de7acc794b9a0e7832144e7a (patch) | |
| tree | 0b177e0ca390c6a5315d7397a51dc5b1f2806529 /tools | |
| parent | 971683762e3aba543b0dc787e8a5ee1c16b5ace7 (diff) | |
| download | zsh-9c84c344d762b200de7acc794b9a0e7832144e7a.tar.gz zsh-9c84c344d762b200de7acc794b9a0e7832144e7a.tar.bz2 zsh-9c84c344d762b200de7acc794b9a0e7832144e7a.zip | |
fix: disable `log.showSignature` in `git log` calls
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/changelog.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/changelog.sh b/tools/changelog.sh index 664f34608..86774a7ea 100755 --- a/tools/changelog.sh +++ b/tools/changelog.sh @@ -414,7 +414,7 @@ function main {    # --first-parent: commits from merged branches are omitted    local SEP="0mZmAgIcSeP"    local -a raw_commits -  raw_commits=(${(0)"$(command git log -z \ +  raw_commits=(${(0)"$(command git -c log.showSignature=false log -z \      --format="%h${SEP}%D${SEP}%s${SEP}%b" --abbrev=7 \      --no-merges --first-parent $range)"}) | 
