forked from hubot-archive/hubot-pager-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (24 loc) · 773 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const fs = require('fs');
const path = require('path');
module.exports = function (robot, scripts) {
const scriptsPath = path.resolve(__dirname, 'src', 'scripts');
return fs.exists(scriptsPath, function (exists) {
if (exists) {
return (() => {
const result = [];
for (var script of Array.from(fs.readdirSync(scriptsPath))) {
if (scripts != null && !Array.from(scripts).includes('*')) {
if (Array.from(scripts).includes(script)) {
result.push(robot.loadFile(scriptsPath, script));
} else {
result.push(undefined);
}
} else {
result.push(robot.loadFile(scriptsPath, script));
}
}
return result;
})();
}
});
};