👷 misc(CI): ignore deleted files in pre-commit

This commit is contained in:
welpo 2024-11-16 19:01:14 +01:00
parent 557ea7786f
commit f93def0692
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

View File

@ -148,8 +148,8 @@ fi
# Ensure JavaScript files are minified. # # Ensure JavaScript files are minified. #
################################################################## ##################################################################
# Get the newly added and modified files. # Get the newly added and modified files, but not deleted files.
mapfile -t all_changed_files < <(git diff --cached --name-only) mapfile -t all_changed_files < <(git diff --cached --name-only --diff-filter=d)
script_name=$(basename "$0") script_name=$(basename "$0")
# Loop through all newly added or modified files. # Loop through all newly added or modified files.