From 8a125bcbd8a093f198bebafed14654f99c967557 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Thu, 23 Jan 2025 18:41:40 -0800 Subject: [PATCH] fix latest install.sh URL --- site/getting-started/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/getting-started/installation.md b/site/getting-started/installation.md index 8730c6f..7c5369c 100644 --- a/site/getting-started/installation.md +++ b/site/getting-started/installation.md @@ -58,12 +58,12 @@ There's also an `install.sh` script that will automatically download the appropr ```sh # yolo -curl -L https://github.com/asg017/sqlite-vec/releases/download/latest/install.sh | sh +curl -L 'https://github.com/asg017/sqlite-vec/releases/latest/download/install.sh' | sh ``` ```sh # ok lets play it safe -curl -o install.sh -L https://github.com/asg017/sqlite-vec/releases/download/latest/install.sh +curl -o install.sh -L https://github.com/asg017/sqlite-vec/releases/latest/download/install.sh # inspect your scripts cat install.sh # TODO Test if execute permissions?