From d001825cd50595f600c0d597a6b1a31205100e58 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 12 May 2025 19:56:26 +1200 Subject: [PATCH] Tidy install --- README.md | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a203c7b..5ff1414 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # Installation ``` -curl -L -o bb64_install.sh https://gitea.jde.nz/j/bb64/raw/branch/main/install.sh && sudo bash ./bb64_install.sh && rm bb64_install.sh +curl -fsSL -o bb64_install.sh https://gitea.jde.nz/j/bb64/raw/branch/main/install.sh && sudo bash ./bb64_install.sh && rm bb64_install.sh ``` # Use diff --git a/install.sh b/install.sh index 7909434..4ab7a41 100755 --- a/install.sh +++ b/install.sh @@ -50,7 +50,7 @@ trap 'rm -rf "$TMPDIR"' EXIT URL="https://gitea.jde.nz/j/bb64/releases/download/$TAG/$BIN" echo "Downloading $BIN from $URL..." -curl -L -o "$TMPDIR/bb64" "$URL" +curl -fsSL -o "$TMPDIR/bb64" "$URL" # 4. Make it executable # -----------------------------------------------------------------------------