whiskerz007 / proxmox_hassos_install

MIT License
881 stars 192 forks source link

Downloading zip, but in script we have only "gz" "xz" extractors #140

Open NlightN22 opened 1 year ago

NlightN22 commented 1 year ago

Hi! Last URL wich is downloading for me is: "https://github.com/home-assistant/operating-system/releases/download/10.2/haos_generic-aarch64-10.2.vmdk.zip" At script we have:

*"gz") gunzip -f "$FILE";;
*"xz") xz -d "$FILE";;

I add: *"zip") unzip -o "$FILE";; and all works pretty good.