diff options
Diffstat (limited to 'bin/build.js')
-rw-r--r-- | bin/build.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/build.js b/bin/build.js index 49978b8..bea8ff9 100644 --- a/bin/build.js +++ b/bin/build.js @@ -47,8 +47,8 @@ var buildFunc = function(dir, options) { }) .then(function(output) { console.log("Successfuly built !"); - }, utils.logError) - .then(_.constant(outputDir)); + return output; + }, utils.logError); }; module.exports = buildFunc;
\ No newline at end of file |