1
0
Fork 0

Catch multiple instances

pull/1427/head
Francesco Renzi 2023-05-23 15:03:32 +01:00
parent 0e36a96ee5
commit c44e73f0a5
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
*/
export function setSecret(secret: string): void {
for (const part of secret.split(/[\r\n]/)) {
for (const part of secret.split(/[\r\n]+/)) {
if (part) {
issueCommand('add-mask', {}, part)
}