From cbaa9a923fb1a574f7b738adcf22e5d4aaa6f6cd Mon Sep 17 00:00:00 2001 From: pika Date: Sat, 24 May 2025 15:52:28 +0200 Subject: [PATCH] testing --- yazi.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yazi.sh b/yazi.sh index cac1e54..c3e9701 100644 --- a/yazi.sh +++ b/yazi.sh @@ -73,12 +73,12 @@ case "$distro" in debian | ubuntu | arch | fedora | alpine | opensuse) - check-and-install "${generalDeps[@]}" - check-and-install "${pkgArray[@]}" + check-and-install ${generalDeps[@]} + check-and-install ${pkgArray[@]} ;; *) echo-error "There are no dependencies to install for $distro" - return 69 + return 0 ;; esac }