distro.backend.debian.Refresh.run(): Fix apt_get()

Fix call to apt_get(), needs to be a list, not a string.
This commit is contained in:
Jan Lindemann 2026-03-04 16:29:19 +00:00
commit a25701991d

View file

@ -11,4 +11,4 @@ class Refresh(Base):
super().__init__(parent)
async def run(self, args: Namespace):
return await self.util.apt_get('update')
return await self.util.apt_get(['update'])