1
0
Fork 0

Apply linting

pull/1427/head
Francesco Renzi 2023-05-23 14:11:05 +01:00
parent 38e6785d19
commit 0e36a96ee5
1 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ export function exportVariable(name: string, val: any): void {
export function setSecret(secret: string): void {
for (const part of secret.split(/[\r\n]/)) {
if (part) {
issueCommand('add-mask', {}, part);
issueCommand('add-mask', {}, part)
}
}
}