Skip to content

Commit

Permalink
Hopefully the last tweak on installDeps error
Browse files Browse the repository at this point in the history
  • Loading branch information
doesdev committed Mar 17, 2018
1 parent e202723 commit 947a080
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function runner (args, opts) {
if (!dep || lastDep === dep) return Promise.reject(err)
lastDep = dep
let getDep = execa(env.ngoBin, ['get', dep], opts)
getDep.then(() => run()).catch(() => { throw err })
return getDep.then(() => run()).catch(() => Promise.reject(err))
})
return go
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngo",
"version": "2.3.2",
"version": "2.3.3",
"description": "Run Go commands, whether your Go env is in place or not",
"main": "index.js",
"files": [
Expand Down

0 comments on commit 947a080

Please sign in to comment.