-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Description
Checklist
- I have filled out the issue template to the best of my ability.
- I have read https://hacs.xyz/docs/help/issues/
- This issue is related to one the HACS add-ons.
- This is a bug and not a feature request.
- This issue only contains 1 issue (if you have multiple issues, open one issue for each issue).
Which Add-on are you reporting an issue for?
get
Describe the issue
After home assistant update ( now 2025.8.3), HACS stopped working, and i discovered that i had an old version of HACS.
From UI it was not showing any available update, so I uninstalled HACS addon and removed the folder.
Then i tried to use the GETHACS addon as suggested in the documentation https://www.hacs.xyz/docs/use/download/download but it was still downloading the older version 1.34.
I also run the Terminal command "wget -O - https://get.hacs.xyz | bash -" but it was still downloading version 1.34.
Here i discovered that the script [https://get.hacs.xyz] calls at line 67
wget "https://github.com/hacs/integration/releases/latest/download/hacs.zip"
manually changing this line with
wget "https://github.com/hacs/integration/releases/download/2.0.5/hacs.zip"
finally solved my issue, installing the latest version 2.0.5.
Could you please verify / fix the script that downloads and unpacks the latest version?
thanks