Update haos-vm.sh

This commit is contained in:
tteckster 2022-04-16 13:34:06 -04:00 committed by GitHub
parent 4822a2d377
commit f37e3770cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -117,14 +117,14 @@ msg_info "Getting URL for Latest Home Assistant Disk Image"
RELEASE_TYPE=qcow2
URL=$(cat<<EOF | python3
import requests
url = "https://api.github.com/repos/home-assistant/operating-system/releases"
url = "https://api.github.com/repos/home-assistant/operating-system/releases/latest"
r = requests.get(url).json()
if "message" in r:
exit()
for release in r:
if not release["prerelease"]:
continue
for asset in release["assets"]:
if asset in release["assets"]:
if asset["name"].find("$RELEASE_TYPE") != -1:
image_url = asset["browser_download_url"]
print(image_url)