Merge pull request #123 from NuSkooler/0.0.7-alpha

0.0.7 alpha
This commit is contained in:
Bryan Ashby 2017-10-02 21:41:38 -06:00 committed by GitHub
commit a68ff8a046
2 changed files with 17 additions and 0 deletions

View File

@ -13,6 +13,7 @@ const pty = require('ptyw.js');
const sane = require('sane');
const moment = require('moment');
const paths = require('path');
const fse = require('fs-extra');
exports.getModule = EventSchedulerModule;
exports.EventSchedulerModule = EventSchedulerModule; // allow for loadAndStart
@ -245,6 +246,12 @@ EventSchedulerModule.prototype.startup = function(cb) {
}
});
});
fse.exists(schedEvent.schedule.watchFile, exists => {
if(exists) {
self.performAction(schedEvent, `Watch file: ${schedEvent.schedule.watchFile}`);
}
});
}
});
}

View File

@ -1669,6 +1669,16 @@ FTNMessageScanTossModule.prototype.startup = function(cb) {
}
});
});
//
// If the watch file already exists, kick off now
// https://github.com/NuSkooler/enigma-bbs/issues/122
//
fse.exists(importSchedule.watchFile, exists => {
if(exists) {
tryImportNow(`Performing import/toss due to @watch: ${importSchedule.watchFile} (initial exists)`);
}
});
}
}
}