|
|
|
@ -196,9 +196,13 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
|
|
|
|
const customCliPath = String(args.inputs.customCliPath);
|
|
|
|
const customCliPath = String(args.inputs.customCliPath);
|
|
|
|
let cliPath = '';
|
|
|
|
let cliPath = '';
|
|
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
const { doesCommandCreateOutputFile } = args.inputs;
|
|
|
|
outputFileBecomesWorkingFile,
|
|
|
|
let { outputFileBecomesWorkingFile } = args.inputs;
|
|
|
|
} = args.inputs;
|
|
|
|
|
|
|
|
|
|
|
|
if (!doesCommandCreateOutputFile) {
|
|
|
|
|
|
|
|
outputFileBecomesWorkingFile = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let userOutputFilePath = String(args.inputs.userOutputFilePath);
|
|
|
|
let userOutputFilePath = String(args.inputs.userOutputFilePath);
|
|
|
|
let cliArguments = String(args.inputs.cliArguments);
|
|
|
|
let cliArguments = String(args.inputs.cliArguments);
|
|
|
|
|
|
|
|
|
|
|
|
|