From fdac7314160f1cc8dc23192298dcd02617b69da1 Mon Sep 17 00:00:00 2001 From: Austin Macdonald Date: Mon, 27 May 2024 17:21:49 -0500 Subject: [PATCH] Fix: full command should be space seperated --- src/duct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duct.py b/src/duct.py index fd5408c3..493480b6 100755 --- a/src/duct.py +++ b/src/duct.py @@ -366,7 +366,7 @@ def main(): else: stderr_file = stderr - full_command = "".join([str(args.command)] + args.arguments) + full_command = " ".join([str(args.command)] + args.arguments) print(f"{Colors.OKCYAN}-----------------------------------------------------") print(f"duct is executing {full_command}...") print()