From e527820ceb71166b0bf80336d48799ff3bbf2868 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 28 Sep 2025 01:44:50 +0100 Subject: vendor.sh: don't use unrar the only practical way to use it is to to use the non-free version; currently used as a fallback if unar fails. however, i'm also going to scrap unar and use bsdtar instead. Signed-off-by: Leah Rowe --- include/vendor.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'include') diff --git a/include/vendor.sh b/include/vendor.sh index e14974cd..c44de2b1 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -296,9 +296,7 @@ extract_archive() : elif 7z x "$1" -o"$2"; then : - elif unar -f "$1" -o "$2" || unrar -o+ -op"$2" x "$1"; then - # compatible with unrar-free and unrar-nonfree - + elif unar -f "$1" -o "$2"; then : elif unzip "$1" -d "$2"; then : -- cgit v1.2.1