From b718e2da647488dedb32938d3b51fff39d526da7 Mon Sep 17 00:00:00 2001 From: Tim Griesser Date: Fri, 3 Oct 2014 11:14:04 -0400 Subject: [PATCH] Relative directory config for path.resolve in #515 --- lib/seed/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/seed/index.js b/lib/seed/index.js index 0934529e..ef897c40 100644 --- a/lib/seed/index.js +++ b/lib/seed/index.js @@ -139,7 +139,7 @@ Seeder.prototype._absoluteConfigDir = function() { Seeder.prototype.setConfig = function(config) { return _.extend({ extension: 'js', - directory: '/seeds' + directory: './seeds' }, this.config || {}, config); };