(command: string, stepNumber: number)
| 67 | } |
| 68 | |
| 69 | export function assertBatchRuntimeCommandAllowed(command: string, stepNumber: number): void { |
| 70 | if (BATCH_BLOCKED_COMMANDS.has(command)) { |
| 71 | throw new AppError('INVALID_ARGS', `Batch step ${stepNumber} cannot run ${command}.`); |
| 72 | } |
| 73 | } |
no outgoing calls
no test coverage detected