diff --git a/packages/cli/src/WorkflowRunner.ts b/packages/cli/src/WorkflowRunner.ts index 629acc70f..0766a70e5 100644 --- a/packages/cli/src/WorkflowRunner.ts +++ b/packages/cli/src/WorkflowRunner.ts @@ -186,7 +186,11 @@ export class WorkflowRunner { if (externalHooks.exists('workflow.postExecute')) { postExecutePromise .then(async (executionData) => { - await externalHooks.run('workflow.postExecute', [executionData, data.workflowData, executionId]); + await externalHooks.run('workflow.postExecute', [ + executionData, + data.workflowData, + executionId, + ]); }) .catch((error) => { console.error('There was a problem running hook "workflow.postExecute"', error);