Skip to content

Commit

Permalink
Merge pull request #10798 from microsoft/users/ansheno/keyVaultfix2
Browse files Browse the repository at this point in the history
Fixed multiline json flattening in key vault task
  • Loading branch information
Anumita authored Jul 1, 2019
2 parents 629001b + 3b93c7e commit fab9332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tasks/AzureKeyVaultV1/operations/KeyVault.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class KeyVault {
if (strVal) {
console.log(util.format("Value of secret %s has been converted to single line.", secretName));
tl.setVariable(secretNameWithoutVersion, strVal, true);
tl.setVariable(secretName, secretValue, true);
tl.setVariable(secretName, strVal, true);
}
else {
let lines = secretValue.split('\n');
Expand Down

0 comments on commit fab9332

Please sign in to comment.