We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d32d356 commit 8aecf2dCopy full SHA for 8aecf2d
1 file changed
src/cli/run/mod.rs
@@ -177,7 +177,7 @@ pub async fn run(
177
RunTarget::SingleCommand(args) => {
178
// SingleCommand: working_directory comes from --working-directory CLI flag only.
179
// Config file's working-directory is NOT used.
180
- let command = args.command.join(" ");
+ let command = shell_words::join(&args.command);
181
let poll_opts = PollResultsOptions::new(output_json, base_run_id);
182
let config = build_orchestrator_config(
183
args,
0 commit comments