2a06261f75
This adds a composer.json for all dependencies that are available
16 lines
229 B
Bash
Executable File
16 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#set -e
|
|
|
|
bad_files=$(./admin/findphp | xargs -L 1 /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
|