mkxp-sunshine/tests.sh

11 lines
232 B
Bash
Executable File

#!/bin/bash
# Scripts for static analysis
set -eo pipefail
cppcheck . --force --check-level=exhaustive -q --enable=performance
if [ -n "$1" ]; then
find . | grep .rb | "$1"
else
echo "path to Ruby FASTERER not present, skip"
fi