Skip to content

Commit 2ff66ee

Browse files
committed
Add style required by linter
1 parent 7fe7e94 commit 2ff66ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/internal/access-list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ const internalAccessList = {
507507
if (typeof item.password !== 'undefined' && item.password.length) {
508508
logger.info('Adding: ' + item.username);
509509

510-
utils.execFile('/usr/bin/htpasswd',['-b', htpasswd_file, item.username, item.password])
510+
utils.execFile('/usr/bin/htpasswd', ['-b', htpasswd_file, item.username, item.password])
511511
.then((/*result*/) => {
512512
next();
513513
})

backend/lib/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const exec = require('child_process').exec;
1+
const exec = require('child_process').exec;
22
const execFile = require('child_process').execFile;
33

44
module.exports = {

0 commit comments

Comments
 (0)