Fix shell quoting for exec command arguments

Arguments with special characters (e.g. JSON strings) were passed
unquoted, causing breakage for commands like:
  --speculative-config '{"method":"qwen3_next_mtp","num_speculative_tokens":2}'

Use printf %q in launch-cluster.sh and shlex.quote() in run-recipe.py
to properly escape arguments.
This commit is contained in:
L.B.R.
2026-03-04 15:22:42 +00:00
parent ae19b66fdd
commit 50b3ca60f3
2 changed files with 3 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ while [[ "$#" -gt 0 ]]; do
fi
ACTION="exec"
shift
COMMAND_TO_RUN="$@"
COMMAND_TO_RUN=$(printf "%q " "$@")
break
;;
*)