mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:25:57 +00:00
6 lines
96 B
Bash
6 lines
96 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
exec find . -name "*.php" -not -path "*/lib/*" -print0 | xargs -0 -n1 php -l
|