2019-07-01 18:37:18 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-02-26 00:52:35 +08:00
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
pwd
|
2024-01-14 18:44:52 +08:00
|
|
|
find_sources="find include src tests example bench -type f -name *\.h -o -name *\.cpp"
|
2018-03-17 18:49:31 +08:00
|
|
|
echo -n "Running dos2unix "
|
2023-09-25 20:43:06 +08:00
|
|
|
$find_sources | xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
|
2018-03-17 18:47:04 +08:00
|
|
|
echo
|
|
|
|
echo -n "Running clang-format "
|
2023-09-25 20:43:06 +08:00
|
|
|
$find_sources | xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
|
2024-12-02 05:58:58 +08:00
|
|
|
echo
|