We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a4caf commit 3663779Copy full SHA for 3663779
archinstall/scripts/guided.py
@@ -57,7 +57,7 @@ def perform_installation(
57
Only requirement is that the block devices are
58
formatted and setup prior to entering this function.
59
"""
60
- start_time = time.time()
+ start_time = time.monotonic()
61
info('Starting installation...')
62
63
config = arch_config_handler.config
@@ -169,7 +169,7 @@ def perform_installation(
169
debug(f'Disk states after installing:\n{disk_layouts()}')
170
171
if not arch_config_handler.args.silent:
172
- elapsed_time = time.time() - start_time
+ elapsed_time = time.monotonic() - start_time
173
action = select_post_installation(elapsed_time)
174
175
match action:
0 commit comments