This commit is contained in:
pika 2025-05-10 10:28:38 +02:00
parent 3ce5dc4ad6
commit 2bd93fcadb

View file

@ -26,9 +26,9 @@
fi
checkAndInstall() {
for deps in "${1[@]}"; do
for deps in "$@"; do
if ! command_exists $deps; then
_install "$1"
_install "$deps"
else
echo_note "skipping $deps - as is already installed.."
fi