do not attempt dot files

This commit is contained in:
AJ ONeal 2015-11-29 01:18:42 +00:00
parent b6493ac916
commit c9c6344682
1 changed files with 7 additions and 4 deletions

View File

@ -49,6 +49,9 @@ module.exports.create = function (conf, deps) {
var services = [];
nodes.forEach(function (node) {
if (!/^\./.test(node)) {
return;
}
promise = promise.then(function () {
return loadService(node).then(function (srv) {
if (!srv) {