We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a5051 commit 7fdfc4bCopy full SHA for 7fdfc4b
src/pqTestConnector/PqTestTaskUtils.ts
@@ -99,7 +99,7 @@ export function formatArguments(args: string[]): string {
99
100
for (const oneArg of args) {
101
// pre formatting
102
- const isCurrentArgumentParameter: boolean = oneArg.indexOf("--") === 0;
+ const isCurrentArgumentParameter: boolean = oneArg.indexOf("--") === 0 || oneArg.indexOf("-") === 0;
103
104
const shouldQuoted: boolean = isLastArgParameter && !isCurrentArgumentParameter;
105
const shouldBreakLine: boolean = isCurrentArgumentParameter;
0 commit comments