Fix log dir error on docker if not created

pull/215/head
rodriciru 2 years ago committed by GitHub
parent a51b65dd3f
commit 94f1b3c88d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,6 +26,9 @@ var cron_parser = require("cron-parser");
var cronstrue = require('cronstrue/i18n');
var humanCronLocate = process.env.HUMANCRON ?? "en"
if (!fs.existsSync(exports.log_folder)){
fs.mkdirSync(exports.log_folder);
}
crontab = function(name, command, schedule, stopped, logging, mailing){
var data = {};

Loading…
Cancel
Save