Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions archinstall/scripts/guided.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def perform_installation(
Only requirement is that the block devices are
formatted and setup prior to entering this function.
"""
start_time = time.time()
start_time = time.monotonic()
info('Starting installation...')

config = arch_config_handler.config
Expand Down Expand Up @@ -169,7 +169,7 @@ def perform_installation(
debug(f'Disk states after installing:\n{disk_layouts()}')

if not arch_config_handler.args.silent:
elapsed_time = time.time() - start_time
elapsed_time = time.monotonic() - start_time
action = select_post_installation(elapsed_time)

match action:
Expand Down