File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -240,23 +240,21 @@ check_email() {
240
240
get_yml_file () {
241
241
if [ -n " $app_name " ] && [ -f " containers/$app_name .yml" ]
242
242
then
243
- log " Using app name '$app_name ' from command argument"
244
243
web_file=" containers/$app_name .yml"
245
- log " Found $web_file "
244
+ log " Found $web_file from command argument "
246
245
elif [ -f containers/app.yml ]
247
246
then
248
247
app_name=" app"
249
248
web_file=containers/$app_name .yml
250
249
log " Found $web_file "
251
250
elif [ -f containers/web_only.yml ]
252
251
then
253
- log " YML=web_only.yml"
254
252
app_name=" web_only"
255
253
web_file=containers/$app_name .yml
256
254
log " Found $web_file "
257
255
else
258
- log " Can't find app.yml or web_only.yml. "
259
- log " Giving up. "
256
+ log There is no container definition.
257
+ log Unable to continue.
260
258
exit
261
259
fi
262
260
}
You can’t perform that action at this time.
0 commit comments