Skip to content

Commit

Permalink
Change exe '-inputformat' switch prefix '-in' to '-inp' to fix confli…
Browse files Browse the repository at this point in the history
…ct with '-interactive' (PowerShell#13205)
  • Loading branch information
iSazonov authored Jul 20, 2020
1 parent 2c18386 commit 8c22e5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ private void ParseHelper(string[] args)
ParseFormat(args, ref i, ref _outFormat, CommandLineParameterParserStrings.MissingOutputFormatParameter);
_outputFormatSpecified = true;
}
else if (MatchSwitch(switchKey, "inputformat", "in") || MatchSwitch(switchKey, "if", "if"))
else if (MatchSwitch(switchKey, "inputformat", "inp") || MatchSwitch(switchKey, "if", "if"))
{
ParseFormat(args, ref i, ref _inFormat, CommandLineParameterParserStrings.MissingInputFormatParameter);
}
Expand Down

0 comments on commit 8c22e5f

Please sign in to comment.