Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 002dfe49..078c8066 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -227,7 +227,7 @@ class Filesystem():
paritioning = self.parted(f'{self.blockdevice.device} mkpart {type} {start} {end}') == 0
if paritioning:
- print(b''.join(sys_command(f'/usr/bin/ {string}')))
+ # Verify that partitions exist before releasing the application onwards: print(b''.join(sys_command(f'/usr/bin/partprobe {string}')))
return True
def set_name(self, partition:int, name:str):