mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Ensure we are in root directory
|
|
basedir="$(readlink -f `dirname $0`/..)"
|
|
cd $basedir
|
|
|
|
scripts/run-clang-format.py -r src test --exclude src/openrct2/thirdparty
|