mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-02 13:10:55 +00:00
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/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
|