fix: installing handlers as prerequisite for packages

This commit is contained in:
xeruf 2023-01-25 16:37:31 +02:00
parent a6235ac38c
commit 043c652a30

View file

@ -46,7 +46,7 @@ installpkg() {
local pkghandlers="$(find "$dir_package" -type f -printf "%f\n" 2>/dev/null)"
for handler in $pkghandlers
do installpkg --quiet "$handler" &&
echo "$handler" >>"$pkghandlers" &&
echo "$handler" >>"$handlersfile" &&
package_available_entries=$(getentries "$1") &&
break
done