From 7ad662ab28f34b34568424749540d74793464ecf Mon Sep 17 00:00:00 2001 From: BigfootACA Date: Thu, 23 May 2024 17:18:06 +0800 Subject: [PATCH] builder: lib: mount.py: fix MountPoint clone option list Signed-off-by: BigfootACA --- builder/lib/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/lib/mount.py b/builder/lib/mount.py index 7dede1f..8c9bdf3 100644 --- a/builder/lib/mount.py +++ b/builder/lib/mount.py @@ -262,7 +262,7 @@ class MountPoint(SerializableDict): mnt.source = self.source mnt.target = self.target mnt.fstype = self.fstype - mnt.option = self.option + mnt.options = self.options mnt.fs_freq = self.fs_freq mnt.fs_passno = self.fs_passno return mnt