nheko/.ci/format.sh

18 lines
276 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2017-09-24 16:08:11 +02:00
# Runs the Clang Formatter
# Return codes:
# - 1 there are files to be formatted
# - 0 everything looks fine
set -eu
2017-09-24 16:08:11 +02:00
2021-03-05 00:35:15 +01:00
FILES=$(find src -type f \( -iname "*.cpp" -o -iname "*.h" \))
2017-09-24 16:08:11 +02:00
for f in $FILES
do
2019-09-08 17:28:26 +02:00
clang-format -i "$f"
done;
2019-09-08 17:28:26 +02:00
git diff --exit-code