From c15c43f0b023f5a557e0d7ae6f2b149e03452c6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Tue, 21 May 2019 00:00:00 +0000 Subject: [PATCH] tmux: pretty print the command to be executed --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 66f82ac..de688e9 100755 --- a/run +++ b/run @@ -748,7 +748,7 @@ Extra options to append at the end of the emulator command line. os.path.join(self.env['root_dir'], 'tmux-split'), "sleep 2;{} {}".format(tmux_cmd, tmux_args) ] - self.log_info(tmux_cmd) + self.log_info(self.sh.cmd_to_string(tmux_cmd)) subprocess.Popen(tmux_cmd) cmd.extend(extra_emulator_args) cmd.extend(self.env['extra_emulator_args'])