mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
18 lines
247 B
Bash
18 lines
247 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Codestyle check script:"
|
|
echo
|
|
|
|
regexChecks=()
|
|
|
|
for check in ${regexChecks[@]}; do
|
|
echo " Checking RegEx: '${check}'"
|
|
|
|
if grep -E -r ${check} src; then
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "Everything looks good"
|