Skip to content

Commit e150f41

Browse files
committed
fix unexpected error parsing for dev runs
1 parent 11df7b8 commit e150f41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-v3/src/executions/taskRunProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ export class TaskRunProcess {
386386
return this._childPid;
387387
}
388388

389-
static parseExecuteError(error: unknown, dockerMode = false): TaskRunInternalError {
389+
static parseExecuteError(error: unknown, dockerMode = true): TaskRunInternalError {
390390
if (error instanceof CancelledProcessError) {
391391
return {
392392
type: "INTERNAL_ERROR",

0 commit comments

Comments
 (0)