From e4ca9fe0995f915820d5e89e6298cdfb31da2c20 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Mon, 26 Feb 2024 06:36:08 +0100 Subject: [PATCH] installer: Correctly umount main BTRFS partition. Signed-off-by: Stefan Schantl --- src/installer/hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 420feaca7..205d40d21 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -916,7 +916,7 @@ int hw_create_btrfs_layout(const char* path, const char* output) { } // Umount the main BTRFS after subvolume creation. - r = hw_umount(path, 0); + r = hw_umount(DESTINATION_MOUNT_PATH, 0); if (r) return r; -- 2.39.5