This commit is contained in:
Dave Horton
2022-03-08 14:10:22 -05:00
parent fd8df533ab
commit ddf00c0ddf

View File

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