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@hvornum.se>2021-12-31 12:33:01 +0100
committerAnton Hvornum <anton@hvornum.se>2021-12-31 12:33:01 +0100
commitcad911893d653f612c1570ed1bdc7b82df3d9ab8 (patch)
tree728dc983fa1bcc9198ee19eb8097e30574a3eceb /archinstall
parentc6b499cf47fac7a02714e590cf662a85db3095b1 (diff)
Bringing in changes from v2.3.1-dev branch. This fixes a selection of things mentioned in #819.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/general.py3
-rw-r--r--archinstall/lib/installer.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index ea0bafc9..7c8f8ea3 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -284,6 +284,9 @@ class SysCommandWorker:
except UnicodeDecodeError:
return False
+ with open(f"{storage['LOG_PATH']}/cmd_output.txt", "a") as peak_output_log:
+ peak_output_log.write(output)
+
sys.stdout.write(str(output))
sys.stdout.flush()
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 3b2e3bd1..d2d30c85 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -186,7 +186,7 @@ class Installer:
for partition in layouts[blockdevice]['partitions']:
mountpoints[partition['mountpoint']] = partition
- for mountpoint in sorted(mountpoints.keys()):
+ for mountpoint in sorted([mnt_dest for mnt_dest in mountpoints.keys() if mnt_dest != None]):
partition = mountpoints[mountpoint]
if partition.get('encrypted', False):