nheko/.ci/format.sh

15 lines
298 B
Bash
Raw Normal View History

2017-09-24 16:08:11 +02:00
#!/usr/bin/env bash
# Runs the Clang Formatter
# Return codes:
# - 1 there are files to be formatted
# - 0 everything looks fine
set -o errexit
set -o pipefail
set -o nounset
2018-07-17 15:37:25 +02:00
FILES=`find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \)`
2017-09-24 16:08:11 +02:00
clang-format -i $FILES && git diff --exit-code