mirror of
https://github.com/open-goal/jak-project
synced 2026-06-16 14:50:32 -04:00
849d7924c2
Hopefully resolves Linux build dependency errors
10 lines
307 B
Bash
10 lines
307 B
Bash
#!/bin/bash
|
|
echo -n "Running dos2unix "
|
|
find . -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
|
|
echo
|
|
echo -n "Running clang-format "
|
|
find . -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
|
|
echo
|
|
|
|
|