mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
[cli] Change --prefix-filter to --prefix
This commit is contained in:
parent
5a197fe6a9
commit
dc68617212
|
@ -164,9 +164,7 @@ optional arguments:
|
||||||
debug
|
debug
|
||||||
--platform <Platform>
|
--platform <Platform>
|
||||||
Platform override for download (disables install)
|
Platform override for download (disables install)
|
||||||
--prefix-filter <prefix>
|
--prefix <prefix> Only fetch files whose path starts with <prefix> (case insensitive)
|
||||||
Only fetch files whose path starts with <prefix> (case
|
|
||||||
insensitive)
|
|
||||||
|
|
||||||
|
|
||||||
Command: uninstall
|
Command: uninstall
|
||||||
|
|
|
@ -445,8 +445,8 @@ def main():
|
||||||
help='Set download manager and worker processes\' loglevel to debug')
|
help='Set download manager and worker processes\' loglevel to debug')
|
||||||
install_parser.add_argument('--platform', dest='platform_override', action='store', metavar='<Platform>',
|
install_parser.add_argument('--platform', dest='platform_override', action='store', metavar='<Platform>',
|
||||||
type=str, help='Platform override for download (disables install)')
|
type=str, help='Platform override for download (disables install)')
|
||||||
install_parser.add_argument('--prefix-filter', dest='file_prefix', action='store', metavar='<prefix>',
|
install_parser.add_argument('--prefix', dest='file_prefix', action='store', metavar='<prefix>', type=str,
|
||||||
type=str, help='Only fetch files whose path starts with <prefix> (case insensitive)')
|
help='Only fetch files whose path starts with <prefix> (case insensitive)')
|
||||||
|
|
||||||
launch_parser.add_argument('--offline', dest='offline', action='store_true',
|
launch_parser.add_argument('--offline', dest='offline', action='store_true',
|
||||||
default=False, help='Skip login and launch game without online authentication')
|
default=False, help='Skip login and launch game without online authentication')
|
||||||
|
|
Loading…
Reference in a new issue