diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-07-30 17:29:43 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-07-30 17:29:43 +0200 |
commit | bc26f26acfeed23934c10a341f45ff0e0c4703f9 (patch) | |
tree | 81cd7075972b4373b6fe129f246490f5ce5a7cfd | |
parent | stage1: apparently we need to populate the chroot_path setting first (diff) | |
download | catalyst-bc26f26acfeed23934c10a341f45ff0e0c4703f9.tar.gz catalyst-bc26f26acfeed23934c10a341f45ff0e0c4703f9.tar.bz2 catalyst-bc26f26acfeed23934c10a341f45ff0e0c4703f9.zip |
note to self: python is stupid
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rw-r--r-- | catalyst/targets/stage1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalyst/targets/stage1.py b/catalyst/targets/stage1.py index 0cb399c3..ba42d9b8 100644 --- a/catalyst/targets/stage1.py +++ b/catalyst/targets/stage1.py @@ -31,7 +31,7 @@ class stage1(StageBase): # otherwise we may end up trying to mount the same squashfs twice instead # of a bind mount # * take the directory inside the chroot as source, not the host directory - self.set_chroot_path() + self.set_chroot_path() for path, name, _ in self.repos: name = get_repo_name(path) mount_id = f'root_repo_{name}' |