diff options
Diffstat (limited to 'git-repository--apply-patch')
-rwxr-xr-x | git-repository--apply-patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-repository--apply-patch b/git-repository--apply-patch index a4bdf8b..1ad72fa 100755 --- a/git-repository--apply-patch +++ b/git-repository--apply-patch @@ -64,7 +64,7 @@ sub git_commit { my ($msg, $date) = @_; $ENV{GIT_AUTHOR_DATE} = $date; - open(my $F, '| git commit -q --author="unknown <>" --file=-'); + open(my $F, '| git commit -q --author="unknown author <cooker@mandrivalinux.org>" --file=-'); print $F $msg; close $F or die "git commit failed\n"; } |