mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
10 lines
232 B
Bash
Executable file
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
|