Skip to content

Commit

Permalink
Merge pull request #5457 from JSKitty/development
Browse files Browse the repository at this point in the history
fix: all cli 'launch' typos
  • Loading branch information
Unitech authored Oct 8, 2022
2 parents 09c5c52 + 0e2b65e commit 43b638d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/sourcemap-auto-resolve/API.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ API.prototype.connect = function(noDaemon, cb) {
return cb(err, meta);

// If new pm2 instance has been popped
// Lauch all modules
// Launch all modules
Modularizer.launchAll(that, function(err_mod) {
return cb(err, meta);
});
Expand Down
2 changes: 1 addition & 1 deletion lib/API.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class API {

that.launchSysMonitoring(() => {})
// If new pm2 instance has been popped
// Lauch all modules
// Launch all modules
that.launchAll(that, function(err_mod) {
return cb(err, meta);
});
Expand Down
2 changes: 1 addition & 1 deletion lib/binaries/CLI.js
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ commander.command('logs [id|name|namespace]')
.option('--out', 'only shows standard output')
.option('--lines <n>', 'output the last N lines, instead of the last 15 by default')
.option('--timestamp [format]', 'add timestamps (default format YYYY-MM-DD-HH:mm:ss)')
.option('--nostream', 'print logs without lauching the log stream')
.option('--nostream', 'print logs without launching the log stream')
.option('--highlight [value]', 'highlights the given value')
.description('stream logs file. Default stream all logs')
.action(function(id, cmd) {
Expand Down

0 comments on commit 43b638d

Please sign in to comment.