From e5e0924c0bcb1e2777319199116e5acd17141077 Mon Sep 17 00:00:00 2001 From: Larkin <45925460+larb0b@users.noreply.github.com> Date: Fri, 6 Dec 2019 13:45:57 -0500 Subject: [PATCH] Ports: Use unzip to extract zips if bsdtar unavailable (#855) --- Ports/.port_include.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/.port_include.sh b/Ports/.port_include.sh index ea17ae22b2..9819564495 100755 --- a/Ports/.port_include.sh +++ b/Ports/.port_include.sh @@ -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."