()
| 355 | } |
| 356 | |
| 357 | private getInterpolationContext(): JobInterpolationContext { |
| 358 | return { |
| 359 | ...this.ctx.global.getInterpolationContext(), |
| 360 | env: this.getScriptEnv(), |
| 361 | }; |
| 362 | } |
| 363 | |
| 364 | private async executeCommandAsync({ signal }: { signal: AbortSignal | null }): Promise<void> { |
| 365 | assert(this.command, 'Command must be defined.'); |
no test coverage detected