From 6e4b13ea58b20e641eb5d76db7809c7ad97e7a28 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Tue, 12 Sep 2023 16:51:36 -0500 Subject: [PATCH] fix: Do not use zstd --- fastfetch/lure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastfetch/lure.sh b/fastfetch/lure.sh index a2f0c31..c36ed22 100644 --- a/fastfetch/lure.sh +++ b/fastfetch/lure.sh @@ -8,7 +8,7 @@ maintainer='SinTan1729' license=('APACHE-2.0' 'MIT') provides=('fastfetch', 'flashfetch') conflicts=('fastfetch', 'flashfetch') -dependencies=('rpm2cpio', 'zstd') +dependencies=('rpm2cpio') git_repo='fastfetch-cli/fastfetch' sources=() @@ -25,5 +25,5 @@ package() { # Build package echo Creating the package cd ${pkgdir} - rpm2cpio ${srcdir}/${name}.rpm | zstd -d | cpio -idmv + rpm2cpio ${srcdir}/${name}.rpm | cpio -idmv }