bootstrap/specs/mix/template/.githooks/pre-commit

22 lines
452 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
2023-12-03 21:28:55 +00:00
STAGED=$(
git --no-pager diff --name-only --no-color --cached --diff-filter=d |
# Remove quotations used to surrounding filenames with special characters.
sed -e "s/^\"//" -e "s/\"$//g"
)
2023-12-03 21:28:55 +00:00
TARGETS=()
while IFS= read -r FILENAME
do
if [[ "$FILENAME" =~ .*\.exs? ]]; then
TARGETS+=("${FILENAME}")
fi
done <<< "$STAGED"
if (( ${#TARGETS[@]} )); then
mix format "${TARGETS[@]}"
git add "${TARGETS[@]}"
2023-12-03 18:32:45 +00:00
fi