From 7c6c459fbe0d7d7bb1cdd773bf3962a048d5b9bb Mon Sep 17 00:00:00 2001 From: Simon Jesenko Date: Sun, 25 Jan 2015 18:02:31 +0100 Subject: [PATCH] add missing return --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c3e76c0..770cfd4 100644 --- a/index.js +++ b/index.js @@ -58,7 +58,7 @@ module.exports = { } }, tmpDir: function() { - path.join(process.cwd(), 'tmp'); + return path.join(process.cwd(), 'tmp'); }, lockFilePath: function() { return path.join(this.tmpDir(), 'build.lock');