mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
[cli] only print install tags if present
Most games don't seem to use them anyway.
This commit is contained in:
parent
9b5620ca30
commit
5557dc63ae
|
@ -189,8 +189,9 @@ class LegendaryCLI:
|
|||
print(fm.filename)
|
||||
for t in fm.install_tags:
|
||||
install_tags.add(t)
|
||||
# use the log output so this isn't included when piping file list into file
|
||||
logger.info(f'Install tags: {", ".join(sorted(install_tags))}')
|
||||
if install_tags:
|
||||
# use the log output so this isn't included when piping file list into file
|
||||
logger.info(f'Install tags: {", ".join(sorted(install_tags))}')
|
||||
|
||||
def launch_game(self, args, extra):
|
||||
app_name = args.app_name
|
||||
|
|
Loading…
Reference in a new issue