mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
8 lines
234 B
Bash
Executable File
8 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Go to repository root
|
|
cd "$(dirname "$0")/.." || exit 2
|
|
|
|
CLANG_FORMAT_BIN="${CLANG_FORMAT_BIN:-clang-format}"
|
|
|
|
find ./src ./test -iname '*.h' -o -iname '*.cpp' | xargs $CLANG_FORMAT_BIN -Werror -ferror-limit=1 --dry-run |