From f1503349dabaef1d2ec721a11e997949a1959f30 Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Thu, 3 Jun 2021 08:25:36 -0400 Subject: Attempt to avoid crashing when encountering swap partitions in has_content() --- archinstall/lib/disk.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'archinstall/lib') diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index f4936d73..d0e3f6a2 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -254,7 +254,8 @@ class Partition: return None def has_content(self): - if not get_filesystem_type(self.path): + fs_type = get_filesystem_type(self.path) + if not fs_type or "swap" in fs_type: return False temporary_mountpoint = '/tmp/' + hashlib.md5(bytes(f"{time.time()}", 'UTF-8') + os.urandom(12)).hexdigest() -- cgit v1.2.3-54-g00ecf