Files
2023-07-01 03:55:43 -07:00

15 lines
261 B
Bash
Executable File

#!/usr/bin/env bash
list_of_files="${@}"
for file in $list_of_files; do
if [[ "${file}" == "composer.json" ]]; then
$(which composer) validate
exit "${?}"
else
echo "unsupported file: ${file}"
exit 1
fi
done
exit 0