mirror of https://github.com/tteck/Proxmox.git
Update haos-vm.sh
This commit is contained in:
parent
4822a2d377
commit
f37e3770cf
|
@ -117,14 +117,14 @@ msg_info "Getting URL for Latest Home Assistant Disk Image"
|
||||||
RELEASE_TYPE=qcow2
|
RELEASE_TYPE=qcow2
|
||||||
URL=$(cat<<EOF | python3
|
URL=$(cat<<EOF | python3
|
||||||
import requests
|
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()
|
r = requests.get(url).json()
|
||||||
if "message" in r:
|
if "message" in r:
|
||||||
exit()
|
exit()
|
||||||
for release in r:
|
for release in r:
|
||||||
if not release["prerelease"]:
|
if not release["prerelease"]:
|
||||||
continue
|
continue
|
||||||
for asset in release["assets"]:
|
if asset in release["assets"]:
|
||||||
if asset["name"].find("$RELEASE_TYPE") != -1:
|
if asset["name"].find("$RELEASE_TYPE") != -1:
|
||||||
image_url = asset["browser_download_url"]
|
image_url = asset["browser_download_url"]
|
||||||
print(image_url)
|
print(image_url)
|
||||||
|
|
Loading…
Reference in New Issue