diff options
author | Sadie Powell <sadie@witchery.services> | 2020-01-18 14:03:18 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-01-18 14:25:03 +0000 |
commit | 87471ab92dc4c0089d021db3faa27ed2f929fb6b (patch) | |
tree | 681fc5f4e988d1342d381bf8af6b8285252a008a /tools/mkheaders | |
parent | 04b5090a2f65a2e3380a32e5cd0b4936716ec394 (diff) |
Add a function for showing a command whilst executing it.
Diffstat (limited to 'tools/mkheaders')
-rwxr-xr-x | tools/mkheaders | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/mkheaders b/tools/mkheaders index 4b1f370f3..ee8142d3b 100755 --- a/tools/mkheaders +++ b/tools/mkheaders @@ -37,6 +37,7 @@ use List::Util qw(uniq); use POSIX qw(strftime); use lib dirname $RealDir; +use make::common; use make::console; my @ignored_revisions = ( @@ -144,7 +145,7 @@ for my $path (@paths) { } } -system 'git', 'commit', +execute 'git', 'commit', '--author', 'InspIRCd Robot <noreply@inspircd.org>', '--message', 'Update copyright headers.', '--', @updated; |