Skip to content

Commit

Permalink
Final verification of issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Torxed committed Dec 7, 2020
1 parent 6af71ee commit 1aef980
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions archinstall/lib/disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ def add_partition(self, type, start, end, format=None):
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0
else:
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {start} {end}') == 0

import time
time.sleep(5)
print('After:', print(self.blockdevice.partitions))

if partitioning:
Expand Down

0 comments on commit 1aef980

Please sign in to comment.