mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 20:11:56 +00:00
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
|