Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Rename 'successfull' to 'successful'.
  • Loading branch information
sstoby authored and marcelklehr committed Oct 21, 2016
1 parent e7f7a58 commit 7b4711e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ else if (command.match(/^local$/i) && argv[1]) {
console.log("Installing "+version)
n.install(version, function(er) {
if(er) return abort(er.message+'. Sorry.')
exit(0, 'Installation successfull.')
exit(0, 'Installation successful.')
})
})
})
Expand All @@ -367,7 +367,7 @@ else if (command.match(/^global$/i) && argv[1] || argv[0] && !argv[1]) {
console.log("Installing "+version)
n.install(version, function(er) {
if(er) return abort(er.message+'. Sorry.')
exit(0, 'Installation successfull.')
exit(0, 'Installation successful.')
})
})
})
Expand Down

0 comments on commit 7b4711e

Please sign in to comment.