mirror of
https://github.com/diamante0018/MW3ServerFreezer.git
synced 2025-04-19 19:52:53 +00:00
9 lines
230 B
Bash
Executable File
9 lines
230 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 -iname '*.hpp' -o -iname '*.cpp' | xargs $CLANG_FORMAT_BIN -Werror -ferror-limit=1 --dry-run
|