forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
305 B
14 lines
305 B
#!/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
|
|
|
|
FILES=`find include src -type f -type f \( -iname "*.cc" -o -iname "*.h" \)`
|
|
|
|
clang-format -i $FILES && git diff --exit-code
|
|
|