mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-16 12:43:09 +00:00
* tgui maintenance chores * AAAAAA Co-authored-by: Aleksej Komarov <stylemistake@gmail.com> Co-authored-by: Gandalf <jzo123@hotmail.com>
6 lines
186 B
Bash
6 lines
186 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
find . -name "*.php" -print0 | xargs -0 -n1 php -l
|
|
find . -name "*.json" -not -path "*/node_modules/*" -print0 | xargs -0 python3 ./tools/json_verifier.py
|