mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
[cli] Add message notifying users about the resumability of the downloads
This commit is contained in:
parent
38f5bbd934
commit
d62b45f899
|
@ -507,6 +507,9 @@ class LegendaryCLI:
|
||||||
for warn in sorted(res.warnings):
|
for warn in sorted(res.warnings):
|
||||||
logger.warning(warn)
|
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:
|
if not args.yes:
|
||||||
choice = input(f'Do you wish to install "{igame.title}"? [Y/n]: ')
|
choice = input(f'Do you wish to install "{igame.title}"? [Y/n]: ')
|
||||||
if choice and choice.lower()[0] != 'y':
|
if choice and choice.lower()[0] != 'y':
|
||||||
|
|
Loading…
Reference in a new issue