mirror of
https://github.com/quay/quay.git
synced 2025-04-18 10:44:06 +03:00
8 lines
155 B
Bash
Executable File
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 |