1
0
mirror of https://github.com/quay/quay.git synced 2025-04-18 10:44:06 +03:00
quay/scripts/detect-config.sh
2019-11-12 11:09:47 -05:00

8 lines
155 B
Bash
Executable File

if find . -name "config.yaml" -exec false {} +
then
exit 0
else
echo '!!! config.yaml found in container !!!'
find . -name "config.yaml"
exit -1
fi