[cli] Add message notifying users about the resumability of the downloads

This commit is contained in:
derrod 2020-05-22 09:54:12 +02:00
parent 38f5bbd934
commit d62b45f899

View file

@ -507,6 +507,9 @@ class LegendaryCLI:
for warn in sorted(res.warnings):
logger.warning(warn)
logger.info('Downloads are resumable, you can interrupt the download with '
'CTRL-C and resume it using the same command later on.')
if not args.yes:
choice = input(f'Do you wish to install "{igame.title}"? [Y/n]: ')
if choice and choice.lower()[0] != 'y':