Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hack/install-skopeo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/containers/skopeo/releases/latest | python3 -c 'import sys, json; print(json.load(sys.stdin)["tag_name"])')"

echo "Installing skopeo $skopeo_version from source"

Expand Down