From 2b2ede95e5974b9b78b31923414ec4852b6bc61f Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sat, 13 Feb 2021 12:06:25 +0100 Subject: [PATCH] install: get rid of redundant suffix line (MR 2030) It is already filled with the same value at the beginning of the function. --- pmb/install/_install.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index 14ddce80..d4db0b36 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -739,7 +739,6 @@ def create_device_rootfs(args, step, steps): # Install all packages to device rootfs chroot (and rebuild the initramfs, # because that doesn't always happen automatically yet, e.g. when the user # installed a hook without pmbootstrap - see #69 for more info) - suffix = "rootfs_" + args.device pmb.chroot.apk.install(args, install_packages, suffix) for flavor in pmb.chroot.other.kernel_flavors_installed(args, suffix): pmb.chroot.initfs.build(args, flavor, suffix)