Skip to content

Commit

Permalink
Fix npmist.install: repoPath not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelklehr committed Jun 6, 2016
1 parent b5ddd83 commit 792fe72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ NPMIST.install = function(v,done){
.then(() => {
//now actually extract the zip files
return new Promise((resolve,reject) => {
extract(zipFile, { dir: repoPath }, (er) => {
extract(zipFile, { dir: this.repoPath }, (er) => {
if (er) reject(er)
resolve()
})
Expand Down

0 comments on commit 792fe72

Please sign in to comment.