7 lines
153 B
Bash
Executable File
7 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
|
|
find src include -name '*.cpp' -o -name '*.hpp' | xargs clang-format -i
|
|
echo "Formatted."
|