mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
Ports: Use unzip to extract zips if bsdtar unavailable (#855)
This commit is contained in:
parent
d14d6218d1
commit
e5e0924c0b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ func_defined fetch || fetch() {
|
|||
run_nocd gunzip "$filename"
|
||||
;;
|
||||
*.zip)
|
||||
run_nocd bsdtar xf "$filename"
|
||||
run_nocd bsdtar xf "$filename" || run_nocd unzip -qo "$filename"
|
||||
;;
|
||||
*)
|
||||
echo "Note: no case for file $filename."
|
||||
|
|
Loading…
Add table
Reference in a new issue