Add style required by linter

This commit is contained in:
Kamil Skrzypinski 2023-03-07 17:15:03 +01:00
parent 7fe7e94fbd
commit 2ff66ee238
2 changed files with 2 additions and 2 deletions

View File

@ -507,7 +507,7 @@ const internalAccessList = {
if (typeof item.password !== 'undefined' && item.password.length) {
logger.info('Adding: ' + item.username);
utils.execFile('/usr/bin/htpasswd',['-b', htpasswd_file, item.username, item.password])
utils.execFile('/usr/bin/htpasswd', ['-b', htpasswd_file, item.username, item.password])
.then((/*result*/) => {
next();
})

View File

@ -1,4 +1,4 @@
const exec = require('child_process').exec;
const exec = require('child_process').exec;
const execFile = require('child_process').execFile;
module.exports = {