From fefd414b8be465289ff1a4f57cc3421e7601bf09 Mon Sep 17 00:00:00 2001 From: derrod Date: Tue, 5 May 2020 16:01:53 +0200 Subject: [PATCH] [cli] Add --no-install alias for --download-only --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index 4908b25..f7b61d6 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -464,7 +464,7 @@ def main(): help='Ignore existing files (overwrite)') install_parser.add_argument('--disable-patching', dest='disable_patching', action='store_true', help='Do not attempt to patch existing installations (download entire changed file)') - install_parser.add_argument('--download-only', dest='no_install', action='store_true', + install_parser.add_argument('--download-only', '--no-install', dest='no_install', action='store_true', help='Do not mark game as intalled and do not run prereq installers after download') install_parser.add_argument('--update-only', dest='update_only', action='store_true', help='Abort if game is not already installed (for automation)')