OpenRCT2/scripts/check-code-formatting

18 lines
402 B
Bash
Executable File

#!/bin/sh -e
readlink_bin='readlink'
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! [ -x "$(command -v greadlink)" ]; then
echo 'Please install greadlink with Homebrew: brew install coreutils'
exit 1
fi
readlink_bin='greadlink'
fi
# Ensure we are in root directory
basedir="$($readlink_bin -f `dirname $0`/..)"
cd $basedir
scripts/run-clang-format.py -r src test --exclude src/thirdparty