From 2ec4fedfaee16b3c14af6c7f75be73f22a3dadd4 Mon Sep 17 00:00:00 2001 From: Andrew Bogott Date: Thu, 17 Jul 2025 10:43:12 -0500 Subject: [PATCH] Update mirror-k8s-repos.sh Fix the wget line that downloads the actual charts. Previously this just passed a filename (not a url) to wget. That certainly doesn't do anything on /my/ version of wget. Signed-off-by: Andrew Bogott --- scripts/mirror-k8s-repos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mirror-k8s-repos.sh b/scripts/mirror-k8s-repos.sh index 6db0e5a6..99835cf8 100755 --- a/scripts/mirror-k8s-repos.sh +++ b/scripts/mirror-k8s-repos.sh @@ -15,7 +15,7 @@ get_all_tgzs() { pushd mirror/ for tgz in $tgzs; do if [ ! -f "${tgz##*/}" ]; then - wget $tgz + wget $repo_url/$tgz fi done popd