From 5c12cb1fa7f01c851de912344a9d29e288ce6215 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 8 Feb 2024 12:03:44 -0700 Subject: [PATCH] fix(busybox): use -k instead of --keep --- _webi/package-install.tpl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_webi/package-install.tpl.sh b/_webi/package-install.tpl.sh index 3208d5c..f211e3c 100644 --- a/_webi/package-install.tpl.sh +++ b/_webi/package-install.tpl.sh @@ -202,7 +202,7 @@ __bootstrap_webi() { unzstd -c --keep "${WEBI_PKG_PATH}/$WEBI_PKG_FILE" | tar xf - elif test "$WEBI_EXT" = "tar.xz"; then echo " Extracting $(t_path "${my_dl_rel}")" - unxz -c --keep "${WEBI_PKG_PATH}/$WEBI_PKG_FILE" | tar xf - + unxz -c -k "${WEBI_PKG_PATH}/$WEBI_PKG_FILE" | tar xf - elif test "$WEBI_EXT" = "tar.gz"; then echo " Extracting $(t_path "${my_dl_rel}")" tar xzf "${WEBI_PKG_PATH}/$WEBI_PKG_FILE"