mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
Ports: Use unzip to extract zips if bsdtar unavailable (#855)
This commit is contained in:
parent
d14d6218d1
commit
e5e0924c0b
Notes:
sideshowbarker
2024-07-19 10:56:59 +09:00
Author: https://github.com/larb0b Commit: https://github.com/SerenityOS/serenity/commit/e5e0924c0bc Pull-request: https://github.com/SerenityOS/serenity/pull/855
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…
Reference in a new issue