-
-
Notifications
You must be signed in to change notification settings - Fork 341
Open
Description
This link fetch a url, but does not follow the redirect:
curl -s https://api.github.com/repos/comfyanonymous/ComfyUI/tags
{
"message": "Moved Permanently",
"url": "https://api.github.com/repositories/589831718/tags",
"documentation_url": "https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api#follow-redirects"
}
| export COMFYUI_BUILD_REF="$(curl -s https://api.github.com/repos/comfyanonymous/ComfyUI/tags | \ |
suggested fix: add -L to curl, to allow it to follow redirect
curl -L -s https://api.github.com/repos/comfyanonymous/ComfyUI/tags | jq -r '.[0].name'
v0.9.1Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels