Skip to content

Commit

Permalink
fix: outputFileBecomesWorkingFile logic when doesCommandCreateOutputF…
Browse files Browse the repository at this point in the history
…ile set false
  • Loading branch information
HaveAGitGat committed Mar 2, 2025
1 parent 1d893f3 commit 7ca49e5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,13 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
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);

Expand Down

0 comments on commit 7ca49e5

Please sign in to comment.