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 = [];
|
var services = [];
|
||||||
|
|
||||||
nodes.forEach(function (node) {
|
nodes.forEach(function (node) {
|
||||||
if (!/^\./.test(node)) {
|
if (/^\./.test(node)) {
|
||||||
|
// ignore dot files
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
promise = promise.then(function () {
|
promise = promise.then(function () {
|
||||||
|
|
Loading…
Reference in New Issue