Skip to content

Commit

Permalink
fix: let->var
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed Jul 13, 2018
1 parent f3faa3d commit 89e2a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/API/pm2-plus/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function(CLI) {
return this.exitCli(cst.ERROR_EXIT);
}

let uri = `https://app.pm2.io/#/r/${this.gl_interact_infos.public_key}`
var uri = `https://app.pm2.io/#/r/${this.gl_interact_infos.public_key}`
console.log(cst.PM2_IO_MSG + `Opening ${uri}`)
open(uri);
setTimeout(_ => {
Expand Down Expand Up @@ -67,7 +67,7 @@ module.exports = function(CLI) {
this.gl_is_km_linked = true

function install(cb) {
let modules = []
var modules = []

if (opts.type === 'enterprise' || opts.type === 'plus') {
modules = ['pm2-logrotate', 'pm2-server-monit', 'event-loop-inspector']
Expand Down

0 comments on commit 89e2a12

Please sign in to comment.