2019-07-01 12:37:18 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2018-03-17 12:49:31 +02:00
|
|
|
echo -n "Running dos2unix "
|
2019-07-05 10:49:46 +03:00
|
|
|
find .. -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
|
2018-03-17 12:47:04 +02:00
|
|
|
echo
|
|
|
|
echo -n "Running clang-format "
|
2019-07-05 10:49:46 +03:00
|
|
|
find .. -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
|
2018-03-17 12:47:04 +02:00
|
|
|
echo
|
2018-03-09 14:27:15 +02:00
|
|
|
|
|
|
|
|