summaryrefslogtreecommitdiffstats
path: root/scripts/git-hooks/commit-msg
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2025-11-29 20:38:12 +0000
committerPádraig Brady <P@draigBrady.com>2025-11-29 20:41:15 +0000
commit8402681cb7b9835aca46ce59d1a24760b6a74849 (patch)
treea244acacffaaf1f4f2ab97ed16ed51eee7ef7746 /scripts/git-hooks/commit-msg
parent47b58df1bb5ad6c856d11cdd98aa3ce48d5e473f (diff)
downloadcoreutils-8402681cb7b9835aca46ce59d1a24760b6a74849.tar.gz
coreutils-8402681cb7b9835aca46ce59d1a24760b6a74849.zip
maint: commit-msg: remove "digest" as a supported tag
* scripts/git-hooks/commit-msg: We recently renamed the digest module to cksum, so no longer support "digest" as a commit tag.
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 05dce1ebb..fcbc54096 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 digest
+ all copy gnulib tests maint doc build scripts sha\*sum
);
my $v_or = join '|', @valid;
my $valid_regex = qr/^(?:$v_or)$/;