Don't echo out docker-compose config in update.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-01-29 07:41:55 -06:00
parent f6f6af810c
commit 0544833eaa
No known key found for this signature in database
GPG Key ID: 9FC8B9E008872109
1 changed files with 2 additions and 1 deletions

View File

@ -520,7 +520,8 @@ update() {
rm docker.new.sh
fi
if ! docker-compose config; then
local dc_config_test=$(docker-compose config)
if [ $? -ne 0 ]; then
if ask "Docker Compose needs to be updated to continue. Update to latest version?" Y; then
install-docker-compose
fi