From 2c94e157464378a11bcbfc0c4f458f98a8c4e35f Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 24 Jun 2024 10:30:17 +0200 Subject: [PATCH] fix(install.sh): fix version typo (#2645) Signed-off-by: Ettore Di Giacinto --- docs/static/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/install.sh b/docs/static/install.sh index 17eae779..c74c7813 100644 --- a/docs/static/install.sh +++ b/docs/static/install.sh @@ -489,7 +489,7 @@ install_binary_darwin() { [ "$(uname -s)" = "Darwin" ] || fatal 'This script is intended to run on macOS only.' info "Downloading local-ai..." - curl --fail --show-error --location --progress-bar -o $TEMP_DIR/local-ai "https://github.com/mudler/LocalAI/releases/download/v${VERSION}/local-ai-Darwin-${ARCH}" + curl --fail --show-error --location --progress-bar -o $TEMP_DIR/local-ai "https://github.com/mudler/LocalAI/releases/download/${VERSION}/local-ai-Darwin-${ARCH}" info "Installing local-ai..." install -o0 -g0 -m755 $TEMP_DIR/local-ai /usr/local/bin/local-ai