diff --git a/mstream-command-line-boot-wrapper.js b/mstream-command-line-boot-wrapper.js index b44cef1..40e680a 100755 --- a/mstream-command-line-boot-wrapper.js +++ b/mstream-command-line-boot-wrapper.js @@ -1,16 +1,16 @@ #!/usr/bin/env node "use strict"; -// Check if we are in an electron enviroment +// Check if we are in an electron environment if (process.versions["electron"]) { - // off to a seperate electron boot enviroment + // off to a separate electron boot environment require("./mstream-electron.js"); return; } var program = require("./modules/config/configure-commander.js").setup(process.argv); -// User ran a miantnence operation. End the program +// User ran a maintenance operation. End the program if(!program){ return; }