Apply linting

This commit is contained in:
Francesco Renzi 2023-05-23 13:45:22 +01:00
parent 9fccf58073
commit 38e6785d19

View File

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