This commit is contained in:
pika 2025-05-24 15:52:28 +02:00
parent 1892a2216f
commit cbaa9a923f

View file

@ -73,12 +73,12 @@
case "$distro" in case "$distro" in
debian | ubuntu | arch | fedora | alpine | opensuse) debian | ubuntu | arch | fedora | alpine | opensuse)
check-and-install "${generalDeps[@]}" check-and-install ${generalDeps[@]}
check-and-install "${pkgArray[@]}" check-and-install ${pkgArray[@]}
;; ;;
*) *)
echo-error "There are no dependencies to install for $distro" echo-error "There are no dependencies to install for $distro"
return 69 return 0
;; ;;
esac esac
} }