mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
17 lines
276 B
Bash
Executable file
17 lines
276 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Runs the Clang Formatter
|
|
# Return codes:
|
|
# - 1 there are files to be formatted
|
|
# - 0 everything looks fine
|
|
|
|
set -eu
|
|
|
|
FILES=$(find src -type f \( -iname "*.cpp" -o -iname "*.h" \))
|
|
|
|
for f in $FILES
|
|
do
|
|
clang-format -i "$f"
|
|
done;
|
|
|
|
git diff --exit-code
|