You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just cloned the install script and added a line - *"zip") unzip $FILE;; - to handle the zip and it worked great. (you may have to install unzip, I already had it as I usid it for other stuff)
# Extract Home Assistant disk image
msg "Extracting disk image..."
case $FILE in
*"gz") gunzip -f $FILE;;
*"xz") xz -d $FILE;;
*"zip") unzip $FILE;;
*) die "Unable to handle file extension '${FILE##*.}'.";;
esac
Throws error on zip file....
The text was updated successfully, but these errors were encountered: