You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This calls _getUpgradeHash which triggers a request to api.github.com. In environments where the firewall is very restricted, one may not want to enable requests to api.github.com. In this case, the request will need to time out, which can take several minutes.
It might be nice this hash request only happens if AUTO_UPGRADE is 1, for example:
if [ "$AUTO_UPGRADE" = "1" ]; then
_saveaccountconf "UPGRADE_HASH" "$(_getUpgradeHash)"
fi
Or if this strategy is inappropriate, it'd be nice if there were some flag or environment variable that could be set to avoid this request. Thanks.
The text was updated successfully, but these errors were encountered:
Please upgrade to the latest code and try again first. Maybe it's already fixed. acme.sh --upgrade If it's still not working, please provide the log with --debug 2, otherwise, nobody can help you.
Near the end of
install()
, there is:This calls _getUpgradeHash which triggers a request to api.github.com. In environments where the firewall is very restricted, one may not want to enable requests to api.github.com. In this case, the request will need to time out, which can take several minutes.
It might be nice this hash request only happens if AUTO_UPGRADE is 1, for example:
Or if this strategy is inappropriate, it'd be nice if there were some flag or environment variable that could be set to avoid this request. Thanks.
The text was updated successfully, but these errors were encountered: