fix(headless): correct log message to show actual command format
The log message said '/sf ${command}' but the actual command sent is
'/${command}' (without the sf namespace). Fix to match actual dispatch.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
parent
16db710468
commit
d22df007a7
1 changed files with 1 additions and 1 deletions
|
|
@ -1935,7 +1935,7 @@ async function runHeadlessOnce(
|
|||
|
||||
if (!options.json) {
|
||||
writeHeadlessLine(
|
||||
`[headless] Running /sf ${options.command}${options.commandArgs.length > 0 ? " " + options.commandArgs.join(" ") : ""}...`,
|
||||
`[headless] Running /${options.command}${options.commandArgs.length > 0 ? " " + options.commandArgs.join(" ") : ""}...`,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue