Merge branch 'master' into crater

This commit is contained in:
Patrick 'Quezler' Mounier
2020-02-06 19:33:57 +01:00
76 changed files with 351 additions and 281 deletions

14
tools/run-newline Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# add newlines to all files
git ls-files -z | while IFS= read -rd '' f; do tail -c1 < "$f" | read -r _ || echo >> "$f"; done
# undo the changes in these
git checkout -- "*.png"
git checkout -- "*.msav"
git checkout -- "*.jar"
git checkout -- "*.ogg"
git checkout -- "*.ico"
git checkout -- "*.icns"
git checkout -- "*.ttf"
git checkout -- "*.glsl"