Ignore deleted files in pre-commit hook

main
Marko Korhonen 2 years ago
parent d1dff202c9
commit 9b8581051e
No known key found for this signature in database
GPG Key ID: A7F78BCB859CD890

@ -8,7 +8,7 @@ echo "FunctionalHacker's dotfile pre-commit hook start"
printf "Using shell: %s \n" "$(readlink /proc/$$/exe)"
# All staged files
staged_files=$(git diff --name-only --cached)
staged_files=$(git diff --name-only --cached --diff-filter=d)
# Run taplo on staged TOML files
staged_toml=$(echo "$staged_files" | grep '.toml$' || true)

Loading…
Cancel
Save