mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
[cli] sync-saves: Skip unconfigured games when using --yes
This commit is contained in:
parent
b7ad4daeb2
commit
7ac9ec7b5f
|
@ -473,6 +473,10 @@ class LegendaryCLI:
|
||||||
|
|
||||||
# if there is no saved save path, try to get one
|
# if there is no saved save path, try to get one
|
||||||
if not igame.save_path:
|
if not igame.save_path:
|
||||||
|
if args.yes:
|
||||||
|
logger.info(f'Save path for this title has not been set, skipping due to --yes')
|
||||||
|
continue
|
||||||
|
|
||||||
save_path = self.core.get_save_path(igame.app_name, platform=igame.platform)
|
save_path = self.core.get_save_path(igame.app_name, platform=igame.platform)
|
||||||
|
|
||||||
# ask user if path is correct if computing for the first time
|
# ask user if path is correct if computing for the first time
|
||||||
|
|
Loading…
Reference in a new issue