Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-06-03 08:25:36 -0400
committerGitHub <noreply@github.com>2021-06-03 08:25:36 -0400
commitf1503349dabaef1d2ec721a11e997949a1959f30 (patch)
tree4f150b6e0870e4f01af1d64ec458f3c5d5d14a5c /archinstall
parent7b4564c0fc5e1ac1ed489faa757507db66d34457 (diff)
Attempt to avoid crashing when encountering swap partitions in has_content()
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py3
1 files changed, 2 insertions, 1 deletions
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()