fix(exec-approvals): fix command token parsing

This commit is contained in:
Peter Steinberger
2026-01-18 16:08:33 +00:00
parent 4206b9684b
commit f6fefd7f5f
2 changed files with 2 additions and 1 deletions

View File

@@ -242,7 +242,7 @@ function parseFirstToken(command: string): string | null {
if (end > 1) return trimmed.slice(1, end);
return trimmed.slice(1);
}
const match = /^[^\\s]+/.exec(trimmed);
const match = /^\S+/.exec(trimmed);
return match ? match[0] : null;
}