Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
Solving the issue of not being able to handle the zip file
whiskerz007#113
  • Loading branch information
jaap-stack authored Aug 17, 2021
1 parent f681605 commit 15e1b40
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ FILE=$(basename $URL)
msg "Extracting disk image..."
case $FILE in
*"gz") gunzip -f $FILE;;
*"zip") gunzip -S .zip $FILE;;
*"xz") xz -d $FILE;;
*) die "Unable to handle file extension '${FILE##*.}'.";;
esac
Expand Down

0 comments on commit 15e1b40

Please sign in to comment.