From 26b44eb3627070dbee67371395da04b94405a799 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 17 Jan 2025 00:07:07 +0100 Subject: [PATCH] Add package manager back to the cache manifest As detailed in the previous commit, it's important to cache the package manager used in the cache manifest. If we don't, we'll end up reusing the wrong metadata cache which won't have any metadata in it for the new package manager. --- mkosi/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mkosi/config.py b/mkosi/config.py index 24f7dc539..ffbb78fe5 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -2034,6 +2034,7 @@ class Config: "release": self.release, "mirror": self.mirror, "architecture": self.architecture, + "package_manager": self.distribution.package_manager(self).executable(self), "packages": sorted(self.packages), "build_packages": sorted(self.build_packages), "package_directories": [ -- 2.47.2