1
0
Fork 0

Simplify regex

pull/1427/head
Francesco Renzi 2023-05-23 13:29:06 +01:00
parent 63ffaaf25e
commit 9fccf58073
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ export function exportVariable(name: string, val: any): void {
* @param secret value of the secret * @param secret value of the secret
*/ */
export function setSecret(secret: string): void { export function setSecret(secret: string): void {
secret.split(/\r?\n|\r/).forEach(part => { secret.split(/[\r\n]/).forEach(part => {
if (part) { if (part) {
issueCommand('add-mask', {}, part) issueCommand('add-mask', {}, part)
} }