diff options
author | Pádraig Brady <P@draigBrady.com> | 2021-08-29 14:50:00 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2021-09-15 15:35:53 +0100 |
commit | f0b32e79cc2cd184619ecb2037b4c9c88daaa428 (patch) | |
tree | 86d7221990044bfe6df0ff6823b3090a862376d5 /scripts/git-hooks/commit-msg | |
parent | f76a568313b41ab649af60ae5ca1c4811208d379 (diff) | |
download | coreutils-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-x | scripts/git-hooks/commit-msg | 2 |
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)$/; |