From 70882902b5d4f0bdc7a627b0bc9b6152bbecaca9 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 9 Nov 2023 16:31:40 +0000 Subject: build: set --author when running git init set it to a generic name: lbmk Signed-off-by: Leah Rowe --- build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build') diff --git a/build b/build index 6e61c763..932c598c 100755 --- a/build +++ b/build @@ -106,7 +106,8 @@ git_init() git init || fail "${PWD}: cannot initialise Git repository" git add -A . || fail "${PWD}: cannot add files to Git repository" - git commit -m "${projectname} ${version}" --date "${cdate}" || \ + git commit -m "${projectname} ${version}" --date "${cdate}" \ + --author="lbmk " || \ fail "${PWD}: can't commit ${projectname}/${version}, date ${cdate}" git tag -a "${version}" -m "${projectname} ${version}" || \ fail "${PWD}: cannot git-tag ${projectname}/${version}" -- cgit v1.2.1