From 9d3422ceb93b5b60f1333540b3f2b6b0a225fcc0 Mon Sep 17 00:00:00 2001 From: 7sunarni <710720732@qq.com> Date: Sat, 12 Jul 2025 17:00:26 +0800 Subject: [PATCH] fix(install.sh): broken linux link (#6015) * fix(install.sh): broken linux link Signed-off-by: 7sunarni <710720732@qq.com> * Update install.sh --------- Signed-off-by: 7sunarni <710720732@qq.com> Co-authored-by: sh <37271604+shumvgolove@users.noreply.github.com> --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 3f65913e91..68acbccb14 100755 --- a/install.sh +++ b/install.sh @@ -20,7 +20,7 @@ fi if [ $PLATFORM == "Darwin" ]; then PLATFORM="macos-x86-64" elif [ $PLATFORM == "Linux" ]; then - PLATFORM="ubuntu-20_04-x86-64" + PLATFORM="ubuntu-22_04-x86-64" else echo "Scripted installation on your platform is not supported." echo "See compiled binaries in the ${1:-latest} release: https://github.com/$APP_NAME/$APP_NAME/releases/$RELEASE"