Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/general.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-10-12 14:17:14 +0200
committerGitHub <noreply@github.com>2022-10-12 14:17:14 +0200
commiteec45643e950a5b982e1478ef57497491ec37f73 (patch)
tree9be7abbe48a2a466203f7063bf4754a1dc57618f /archinstall/lib/general.py
parent5c8eb7144d9583a8a117a4e892b1e78be1324a28 (diff)
Updating Partition() information after mount and unmount. (#1508)
* Updating Partition() information after mount and unmount. * Cleaned up raw_parted() to gracefully output relevant partition error information. * Adding timestmap to cmd_history.txt as it's impossible to debug properly otherwise * Adding more verbose debugging information * Reinstating the lsblk retry code for PARTUUID and UUID on Partition()'s information * Added error handling for JSON parsing
Diffstat (limited to 'archinstall/lib/general.py')
-rw-r--r--archinstall/lib/general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index d76b7036..8c7aed91 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -379,7 +379,7 @@ class SysCommandWorker:
try:
with history_logfile.open("a") as cmd_log:
- cmd_log.write(f"{self.cmd}\n")
+ cmd_log.write(f"{time.time()} {self.cmd}\n")
if change_perm:
os.chmod(str(history_logfile), stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP)