Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
ci: Allow binaries to be downloaded via redirect
Rūdolfs Ošiņš committed 28 days ago
commit 1003b165e5da78725ebc0126c1dbaec6fc975e37
parent b6743c63fc94959c9c4b38f7f9aec6678811e5c5
1 file changed +1 -1
modified scripts/install-binaries
@@ -38,7 +38,7 @@ install() {
    esac

    echo Downloading "$1" v"$2" from "$FETCH_URL into /tests/tmp/bin/$1/$2"
-
    curl --fail -s "$FETCH_URL" | tar -xJ --strip-components=2 -C "$BINARY_PATH/$1/$2" "$FILENAME/bin/" || (echo "Download failed" && exit 1)
+
    curl --fail --silent --location "$FETCH_URL" | tar -xJ --strip-components=2 -C "$BINARY_PATH/$1/$2" "$FILENAME/bin/" || (echo "Download failed" && exit 1)
  fi
}