summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-09-28 01:44:50 +0100
committerLeah Rowe <leah@libreboot.org>2025-09-28 01:45:36 +0100
commite527820ceb71166b0bf80336d48799ff3bbf2868 (patch)
tree8f71ac8a6612413e4ef3ff5d2991d5caec59d701 /include
parent7b297a44ce1b985485c41d8f9f4fd07e52d4f4b3 (diff)
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 <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r--include/vendor.sh4
1 files changed, 1 insertions, 3 deletions
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
: