From 22206cff30da6b39fccf9c3c0923ffdc103c8492 Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Mon, 28 Jul 2025 11:04:24 -0700 Subject: [PATCH] fixed documentation typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8dab5ad..6b3728d 100644 --- a/README.md +++ b/README.md @@ -388,14 +388,14 @@ Run the provided helper script to add a hook that scans staged files before each ```bash # local (current repo only ─ default) -./install-kingfisher-hook.sh +./install-precommit-hook.sh ``` This creates `.git/hooks/pre-commit` that scans the files staged for commit with `kingfisher scan --no-update-check` and blocks the commit if any secrets are found. ```bash # global (every repo on this machine) -./install-kingfisher-hook.sh --global +./install-precommit-hook.sh --global ### Install a Pre-Receive Hook ```