From 454401e64f4e532aa4dbac3ffd96a2f81077be17 Mon Sep 17 00:00:00 2001 From: dkeven <82354774+dkeven@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:16:05 +0800 Subject: [PATCH] fix(installer): skip conflicting containerd precheck on cloud instance (#757) --- build/installer/install.ps1 | 2 +- build/installer/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/installer/install.ps1 b/build/installer/install.ps1 index 25ee14df..09f818ba 100644 --- a/build/installer/install.ps1 +++ b/build/installer/install.ps1 @@ -19,7 +19,7 @@ if ($architecture -like "ARM") { $arch = "arm64" } -$CLI_VERSION = "0.1.78" +$CLI_VERSION = "0.1.79" $CLI_FILE = "olares-cli-v{0}_windows_{1}.tar.gz" -f $CLI_VERSION, $arch $CLI_URL = "https://dc3p1870nn3cj.cloudfront.net/{0}" -f $CLI_FILE $CLI_PATH = "{0}\{1}" -f $currentPath, $CLI_FILE diff --git a/build/installer/install.sh b/build/installer/install.sh index f16e4666..7901c900 100644 --- a/build/installer/install.sh +++ b/build/installer/install.sh @@ -74,7 +74,7 @@ if [ -z ${cdn_url} ]; then cdn_url="https://dc3p1870nn3cj.cloudfront.net" fi -CLI_VERSION="0.1.78" +CLI_VERSION="0.1.79" CLI_FILE="olares-cli-v${CLI_VERSION}_linux_${ARCH}.tar.gz" if [[ x"$os_type" == x"Darwin" ]]; then CLI_FILE="olares-cli-v${CLI_VERSION}_darwin_${ARCH}.tar.gz"