Skip to content

Commit

Permalink
When using multi-byte language, the line feed character of the browse…
Browse files Browse the repository at this point in the history
…r becomes \r\n.
  • Loading branch information
Saeki Takayoshi committed Feb 28, 2020
1 parent 91043fd commit e46d23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NewmanPostman/newmantask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function GetToolRunner(collectionToRun: string) {
newman.argIf(typeof folder != 'undefined' && folder, ['--folder', folder]);
let globalVars: string[] = tl.getDelimitedInput('globalVars', '\n');
globalVars.forEach(globVar => {
newman.arg(['--global-var', globVar]);
newman.arg(['--global-var', globVar.trim()]);
});
let ignoreRedirect = tl.getBoolInput('ignoreRedirect');
newman.argIf(ignoreRedirect, ['--ignore-redirects']);
Expand Down

0 comments on commit e46d23c

Please sign in to comment.