mkxp-sunshine/tests.sh
2026-08-15 21:48:55 +04:00

10 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