do not attempt dot files
This commit is contained in:
parent
c9c6344682
commit
9eb798dafe
|
@ -49,7 +49,8 @@ module.exports.create = function (conf, deps) {
|
|||
var services = [];
|
||||
|
||||
nodes.forEach(function (node) {
|
||||
if (!/^\./.test(node)) {
|
||||
if (/^\./.test(node)) {
|
||||
// ignore dot files
|
||||
return;
|
||||
}
|
||||
promise = promise.then(function () {
|
||||
|
|
Loading…
Reference in New Issue