From 2191e4cdccfc709d08a6a48f9493697d845b1b29 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 11 May 2023 15:29:06 +0200 Subject: [PATCH] update install script --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index f2cd057ad..e5f17d951 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -11,7 +11,7 @@ DOCKER_VERSION="23.0" CDN="https://coolify-cdn.b-cdn.net/files" OS_TYPE=$(cat /etc/os-release | grep -w "ID" | cut -d "=" -f 2 | tr -d '"') OS_VERSION=$(cat /etc/os-release | grep -w "VERSION_ID" | cut -d "=" -f 2 | tr -d '"') -LATEST_VERSION=$(curl --silent https://get.coollabs.io/versions.json | grep -i version | sed -n '2p' | xargs | awk '{print $2}' | tr -d ',') +LATEST_VERSION=$(curl --silent https://coolify-cdn.b-cdn.net/versions.json | grep -i version | sed -n '2p' | xargs | awk '{print $2}' | tr -d ',') if [ $EUID != 0 ]; then echo "Please run as root"