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 }