alien is a package that lets you convert .deb packages into .rpm packages, and in order to work it installs dpkg. Since helm-system-packages checks for dpkg before dnf it will find dpkg, not find apt and fail. I found that placing dnf before dpkg in the helm-system-packages function fixed that.
alien
is a package that lets you convert.deb
packages into.rpm
packages, and in order to work it installsdpkg
. Since helm-system-packages checks fordpkg
beforednf
it will finddpkg
, not findapt
and fail. I found that placingdnf
beforedpkg
in thehelm-system-packages
function fixed that.