Closed xlionjuan closed 4 days ago
In the script, after getting the GitHub API JSON data, it will use grep to determine browser_download_url is exists or not, but even with the same JSON data, grep will think browser_download_url didn't exist sometimes, use jq fixed the problem.
grep
browser_download_url
jq
Mystery problem solved
In the script, after getting the GitHub API JSON data, it will use
grep
to determinebrowser_download_url
is exists or not, but even with the same JSON data,grep
will thinkbrowser_download_url
didn't exist sometimes, usejq
fixed the problem.