mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
[cli] Rename --include-non-installable to -T/--third-party
This commit is contained in:
parent
9d18ef03fa
commit
eb8bc3713b
|
@ -635,7 +635,7 @@ class LegendaryCLI:
|
||||||
def _launch_origin(self, args):
|
def _launch_origin(self, args):
|
||||||
game = self.core.get_game(app_name=args.app_name)
|
game = self.core.get_game(app_name=args.app_name)
|
||||||
if not game:
|
if not game:
|
||||||
logger.error(f'Unknown game "{args.app_name}", run "legendary list-games --include-non-installable" '
|
logger.error(f'Unknown game "{args.app_name}", run "legendary list-games --third-party" '
|
||||||
f'to fetch data for Origin titles before using this command.')
|
f'to fetch data for Origin titles before using this command.')
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -1980,7 +1980,8 @@ def main():
|
||||||
help='Platform to fetch game list for (default: Mac on macOS, otherwise Windows)')
|
help='Platform to fetch game list for (default: Mac on macOS, otherwise Windows)')
|
||||||
list_parser.add_argument('--include-ue', dest='include_ue', action='store_true',
|
list_parser.add_argument('--include-ue', dest='include_ue', action='store_true',
|
||||||
help='Also include Unreal Engine content (Engine/Marketplace) in list')
|
help='Also include Unreal Engine content (Engine/Marketplace) in list')
|
||||||
list_parser.add_argument('--include-non-installable', dest='include_noasset', action='store_true',
|
list_parser.add_argument('-T', '--third-party', '--include-non-installable',
|
||||||
|
dest='include_noasset', action='store_true', default=False,
|
||||||
help='Include apps that are not installable (e.g. that have to be activated on Origin)')
|
help='Include apps that are not installable (e.g. that have to be activated on Origin)')
|
||||||
list_parser.add_argument('--csv', dest='csv', action='store_true', help='List games in CSV format')
|
list_parser.add_argument('--csv', dest='csv', action='store_true', help='List games in CSV format')
|
||||||
list_parser.add_argument('--tsv', dest='tsv', action='store_true', help='List games in TSV format')
|
list_parser.add_argument('--tsv', dest='tsv', action='store_true', help='List games in TSV format')
|
||||||
|
|
Loading…
Reference in a new issue