Update haos-vm.sh

This commit is contained in:
tteckster 2022-04-16 13:37:57 -04:00 committed by GitHub
parent f37e3770cf
commit 154364de86
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,12 +117,12 @@ 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/latest"
url = "https://api.github.com/repos/home-assistant/operating-system/releases"
r = requests.get(url).json()
if "message" in r:
exit()
for release in r:
if not release["prerelease"]:
if release["prerelease"]:
continue
if asset in release["assets"]:
if asset["name"].find("$RELEASE_TYPE") != -1: