This commit is contained in:
pika 2025-05-22 15:35:48 +02:00
parent 1ecd788ca1
commit fda85d41db

View file

@ -87,9 +87,9 @@ main() {
throw "Dependencies could not get generated!" throw "Dependencies could not get generated!"
else else
check "Dependency list generated!" check "Dependency list generated!"
pen red bold "There are ${#pkglist[*]} items to install.." pen red bold "There are ${#pkglist[@]} items to install.."
for pkg in "${pkglist[@]}"; do for p in "${pkglist[@]}"; do
echo "Package: $pkg" echo "Package: $p"
done done
fi fi