dough sample jar and run tasks

This commit is contained in:
2023-02-17 13:24:40 -08:00
parent 36e680454e
commit acd5ebbdb9
4 changed files with 44 additions and 1 deletions

10
tools/ensure-new-lines.sh Executable file
View File

@ -0,0 +1,10 @@
#!/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