2019-09-29 20:13:24 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-04-11 22:31:39 +02:00
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
pwd
|
2019-09-29 20:13:24 +02:00
|
|
|
echo -n "Running dos2unix "
|
2020-04-11 22:31:39 +02:00
|
|
|
find . -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
|
2019-09-29 20:13:24 +02:00
|
|
|
echo
|
|
|
|
echo -n "Running clang-format "
|
2020-04-11 22:31:39 +02:00
|
|
|
find . -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
|
2019-09-29 20:13:24 +02:00
|
|
|
echo
|
|
|
|
|
|
|
|
|