mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-16 01:39:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5137 201d5d3c-b55e-5fd7-737f-ddc643e51545
15 lines
228 B
Bash
15 lines
228 B
Bash
#!/usr/bin/env bash
|
|
#set -e
|
|
|
|
bad_files=$(./admin/findphp | xargs -l1 /usr/bin/env perl admin/docblocks.pl)
|
|
|
|
if [ "$bad_files" ]
|
|
then
|
|
cat <<EOF 1>&2
|
|
These files do not start with docblocks:
|
|
|
|
$bad_files
|
|
|
|
EOF
|
|
exit 1
|
|
fi
|