From af83229ed4cbb8c87b4bc2f7af2641a927b68e27 Mon Sep 17 00:00:00 2001 From: Zack Zlotnik Date: Tue, 2 Jun 2026 12:52:48 -0400 Subject: [PATCH] use new skopeo location and follow redirects --- hack/install-skopeo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/install-skopeo.sh b/hack/install-skopeo.sh index 6a757e55b7..3c6ad4a420 100755 --- a/hack/install-skopeo.sh +++ b/hack/install-skopeo.sh @@ -32,7 +32,7 @@ install_skopeo() { fi # Get the most recent tagged version of skopeo. - skopeo_version="$(curl -s https://api.github.com/repos/containers/skopeo/releases/latest | python3 -c 'import sys, json; print(json.load(sys.stdin)["tag_name"])')" + skopeo_version="$(curl -sL https://api.github.com/repos/podman-container-tools/skopeo/releases/latest | python3 -c 'import sys, json; print(json.load(sys.stdin)["tag_name"])')" echo "Installing skopeo $skopeo_version from source"