Skip to content

Commit

Permalink
Merge pull request #9 from jesenko/create-tmp
Browse files Browse the repository at this point in the history
Add missing return
  • Loading branch information
rwjblue committed Jan 25, 2015
2 parents 3df027f + 7c6c459 commit 72354ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 72354ed

Please sign in to comment.