From e07aa2538b17515b8ed9e8a8fbf4028d52ebfc83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Israelson?= <57065102+israpps@users.noreply.github.com> Date: Thu, 16 Jun 2022 13:40:44 -0300 Subject: [PATCH] increase author padding on changelog --- make_changelog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_changelog.sh b/make_changelog.sh index 0e3d016f3..ef155d1e5 100755 --- a/make_changelog.sh +++ b/make_changelog.sh @@ -46,7 +46,7 @@ new_number_commits=$((number_commits - old_number_commits + 2)) echo "Current Revision ${number_commits} (Of BitBucket r${old_number_commits} + Of GIT r${new_number_commits})" # Store author, commit and date on temp file -git log -${new_number_commits} --pretty=format:"%>(18,trunc)%ci%h - %<(18)%an %s" > /tmp/commit_summary +git log -${new_number_commits} --pretty=format:"%>(18,trunc)%ci%h - %<(32)%an %s" > /tmp/commit_summary if [ "${?}" != "0" ] then echo "Git command failed, exiting..."