index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | codefiles <11915375+codefiles@users.noreply.github.com> | 2024-03-10 10:19:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 15:19:22 +0100 |
commit | b87c41e92ff2d54f52c1ae06265949524cb114f5 (patch) | |
tree | 62fc574c10f3c53f69380231d554609116d91df1 /archinstall/lib/installer.py | |
parent | 2a33d7cd974b57c0e69b0d4998e9bfe06af86b62 (diff) |
-rw-r--r-- | archinstall/lib/installer.py | 4 |
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 41113899..d5ea889b 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -362,12 +362,12 @@ class Installer: info(f"Updating {fstab_path}") try: - gen_fstab = SysCommand(f'/usr/bin/genfstab {flags} {self.target}').decode() + gen_fstab = SysCommand(f'/usr/bin/genfstab {flags} {self.target}').output() except SysCallError as err: raise RequirementError( f'Could not generate fstab, strapping in packages most likely failed (disk out of space?)\n Error: {err}') - with open(fstab_path, 'a') as fp: + with open(fstab_path, 'ab') as fp: fp.write(gen_fstab) if not fstab_path.is_file(): |