mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-03 13:31:32 +00:00
11 lines
188 B
Bash
11 lines
188 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
git ls-files -z | while IFS= read -rd '' f
|
||
|
do
|
||
|
if file --mime-encoding "$f" | grep -qv binary
|
||
|
then
|
||
|
tail -c1 < "$f" | read -r _ || echo >> "$f"
|
||
|
fi
|
||
|
done
|