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 # -----------------------------------------------------------------------------