Skip to content

Commit

Permalink
fix(install): add error handling to installer
Browse files Browse the repository at this point in the history
  • Loading branch information
watilde committed Aug 20, 2017
1 parent f83c5ef commit bbfd4b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/install/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const installer = (dep, deps, base, resolve, reject) => {
})
Promise.all(tasks).then(() => {
resolve()
})
})
}).catch(reject)
}).catch(reject)
}

module.exports = (deps) => {
Expand Down

0 comments on commit bbfd4b8

Please sign in to comment.