From 48310034e5f2fa072788ea17110caecdc1706533 Mon Sep 17 00:00:00 2001 From: DerLinkman Date: Mon, 26 Dec 2022 14:33:15 +0100 Subject: [PATCH] [Compose Updater] Corrected syntax errors --- helper-scripts/update_compose.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/helper-scripts/update_compose.sh b/helper-scripts/update_compose.sh index 01be926fe..ae2d6ab14 100755 --- a/helper-scripts/update_compose.sh +++ b/helper-scripts/update_compose.sh @@ -42,8 +42,6 @@ echo -e "\e[32mTrying to determine GLIBC version...\e[0m" elif [[ $(curl -sL -w "%{http_code}" https://github.com/docker/compose/releases/latest -o /dev/null) == "200" ]]; then LATEST_COMPOSE=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/docker/compose/releases/latest) # redirect to latest release LATEST_COMPOSE=${LATEST_COMPOSE##*/} #get the latest version from the redirect, inlcuding the "v" prefix - if [ $DC_DL_SUFFIX]; then - LATEST_COMPOSE=1.27.4 # force 1.27.4 for legacy systems, tag is not prefixed by "v" COMPOSE_VERSION=$(docker-compose version --short) if [[ "$LATEST_COMPOSE" != "$COMPOSE_VERSION" ]]; then COMPOSE_PATH=$(command -v docker-compose) @@ -71,4 +69,4 @@ elif [ "${DOCKER_COMPOSE_VERSION}" == "native" ]; then else echo -e "\e[31mCan not read DOCKER_COMPOSE_VERSION variable from mailcow.conf! Is your mailcow up to date? Exiting...\e[0m" exit 1 -fi +fi \ No newline at end of file