Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-12-07 15:32:34 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-12-07 15:32:34 +0100
commita8bb3b4bb30fd1fa3e9a9b94df2380bec090c152 (patch)
tree98c454f75eccca9dfc7033260d0b9dc207e096ce /archinstall
parent24dfe9738653c1e1b241db2cc665c6cab5eeae75 (diff)
Removing one debug step to debug deeper.
Diffstat (limited to 'archinstall')
-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):