Files
RMG/Source/Script/Format.sh
T
Rosalie Wanders aae006763f more formatting
2020-11-08 17:14:44 +01:00

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