bugfix: config was not properly enabling amd when configured

This commit is contained in:
Dave Horton
2022-09-19 21:16:19 +02:00
parent 099f33857c
commit 0c089e2380
2 changed files with 13 additions and 5 deletions

View File

@@ -42,9 +42,9 @@ const clearChannels = () => {
};
const clearFiles = () => {
const {logger} = require('../..');
const out = execSync('find /tmp -name "*.mp3" -mtime +2 -exec rm {} \\;');
logger.debug({out}, 'clearFiles: command output');
//const {logger} = require('../..');
/*const out = */ execSync('find /tmp -name "*.mp3" -mtime +2 -exec rm {} \\;');
//logger.debug({out}, 'clearFiles: command output');
};