mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
14 lines
305 B
Bash
Executable file
14 lines
305 B
Bash
Executable file
#!/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
|