Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/filesystem.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-30 11:00:22 +0200
committerAnton Hvornum <anton@hvornum.se>2021-10-30 11:00:22 +0200
commit76dc426a0fb69fa2d8cbc5c76934dc736d2839a6 (patch)
tree016b98fe3a187078b59196314697832d5d1aac84 /archinstall/lib/disk/filesystem.py
parent68b891837c6174d1f75babf42ee6657d4726576b (diff)
Added creating and mounting of subvolume structure for BTRFS.
Diffstat (limited to 'archinstall/lib/disk/filesystem.py')
-rw-r--r--archinstall/lib/disk/filesystem.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py
index 28846764..0328cd83 100644
--- a/archinstall/lib/disk/filesystem.py
+++ b/archinstall/lib/disk/filesystem.py
@@ -132,6 +132,7 @@ class Filesystem:
def raw_parted(self, string: str):
if (cmd_handle := SysCommand(f'/usr/bin/parted -s {string}')).exit_code != 0:
log(f"Parted ended with a bad exit code: {cmd_handle}", level=logging.ERROR, fg="red")
+ time.sleep(0.5)
return cmd_handle
def parted(self, string: str):