summaryrefslogtreecommitdiff
path: root/scripts/git-hooks/commit-msg
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2021-08-29 14:50:00 +0100
committerPádraig Brady <P@draigBrady.com>2021-09-15 15:35:53 +0100
commitf0b32e79cc2cd184619ecb2037b4c9c88daaa428 (patch)
tree86d7221990044bfe6df0ff6823b3090a862376d5 /scripts/git-hooks/commit-msg
parentf76a568313b41ab649af60ae5ca1c4811208d379 (diff)
downloadcoreutils-f0b32e79cc2cd184619ecb2037b4c9c88daaa428.tar.gz
maint: rename md5sum.c to more general digest.c
md5sum.c will be the base for all digest functions, so rename accordingly. * src/md5sum.c: Rename to ... * src/digest.c: ... renamed from md5sum.c * scripts/git-hooks/commit-msg: Allow digest: commit prefix. * po.POTFILES.in: Adjust to new name. * src/local.mk: Likewise.
Diffstat (limited to 'scripts/git-hooks/commit-msg')
-rwxr-xr-xscripts/git-hooks/commit-msg2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/git-hooks/commit-msg b/scripts/git-hooks/commit-msg
index 03f8c5c31..9c80406d9 100755
--- a/scripts/git-hooks/commit-msg
+++ b/scripts/git-hooks/commit-msg
@@ -24,7 +24,7 @@ my @valid = qw(
sum sync tac tail tee test timeout touch tr true truncate tsort
tty uname unexpand uniq unlink uptime users vdir wc who whoami yes
- all copy gnulib tests maint doc build scripts sha\*sum
+ all copy gnulib tests maint doc build scripts sha\*sum digest
);
my $v_or = join '|', @valid;
my $valid_regex = qr/^(?:$v_or)$/;