From 8da4b55987bc821ce3d0c01f23f94686bd410223 Mon Sep 17 00:00:00 2001 From: derrod Date: Sun, 10 Oct 2021 12:33:42 +0200 Subject: [PATCH] [cli] Fix --dry-run for Origin launch --- legendary/cli.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index a239125..0f3a0f5 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -641,8 +641,12 @@ class LegendaryCLI: return self._print_json(dict(uri=origin_uri), args.pretty_json) if os.name == 'nt': - logger.debug(f'Opening Origin URI: {origin_uri}') - return webbrowser.open(origin_uri) + if args.dry_run: + logger.info(f'Origin URI: {origin_uri}') + else: + logger.debug(f'Opening Origin URI: {origin_uri}') + webbrowser.open(origin_uri) + return # on linux, require users to specify at least the wine binary and prefix in config or command line command = self.core.get_app_launch_command(args.app_name, wrapper=args.wrapper, @@ -658,8 +662,11 @@ class LegendaryCLI: return command.append(origin_uri) - logger.debug(f'Opening Origin URI with command: {shlex.join(command)}') - subprocess.Popen(command, env=full_env) + if args.dry_run: + logger.info(f'Origin launch command: {shlex.join(command)}') + else: + logger.debug(f'Opening Origin URI with command: {shlex.join(command)}') + subprocess.Popen(command, env=full_env) def install_game(self, args): args.app_name = self._resolve_aliases(args.app_name)