From 4bf3d7b36fceba588544c386cbb12cc5543a7cc0 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Fri, 2 Aug 2024 16:19:32 +0200 Subject: [PATCH] Make `download-latest.sh` configurable Make org and repo configurable in `download-latest.sh`. --- hack/download.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/download.sh b/hack/download.sh index 4a11005..a26ddef 100755 --- a/hack/download.sh +++ b/hack/download.sh @@ -22,8 +22,8 @@ set -euo pipefail -ORG=homeport -REPO=retry +ORG="${ORG:-homeport}" +REPO="${REPO:-retry}" if ! hash curl 2>/dev/null; then echo "Required tool curl is not installed."