mirror of
https://github.com/Rosalie241/RMG.git
synced 2026-07-11 09:34:00 +02:00
10 lines
196 B
Bash
Executable File
10 lines
196 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
script_dir="$(dirname "$0")"
|
|
toplvl_dir="$(realpath "$script_dir/../../")"
|
|
|
|
pushd "$toplvl_dir"
|
|
|
|
find Source/ -iname *.hpp -o -iname *.cpp | xargs clang-format -i
|
|
|
|
popd |