Tidy install

This commit is contained in:
Your Name 2025-05-12 19:56:26 +12:00
parent ea4458d275
commit d001825cd5
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# Installation # 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 # Use

View File

@ -50,7 +50,7 @@ trap 'rm -rf "$TMPDIR"' EXIT
URL="https://gitea.jde.nz/j/bb64/releases/download/$TAG/$BIN" URL="https://gitea.jde.nz/j/bb64/releases/download/$TAG/$BIN"
echo "Downloading $BIN from $URL..." echo "Downloading $BIN from $URL..."
curl -L -o "$TMPDIR/bb64" "$URL" curl -fsSL -o "$TMPDIR/bb64" "$URL"
# 4. Make it executable # 4. Make it executable
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------