diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts index cd2e051..7f5ceb6 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts @@ -196,9 +196,13 @@ const plugin = async (args: IpluginInputArgs): Promise => { const customCliPath = String(args.inputs.customCliPath); let cliPath = ''; - const { - outputFileBecomesWorkingFile, - } = args.inputs; + const { doesCommandCreateOutputFile } = args.inputs; + let { outputFileBecomesWorkingFile } = args.inputs; + + if (!doesCommandCreateOutputFile) { + outputFileBecomesWorkingFile = false; + } + let userOutputFilePath = String(args.inputs.userOutputFilePath); let cliArguments = String(args.inputs.cliArguments);