This commit is contained in:
Paul Sori 2018-08-18 14:44:16 -04:00
parent a16981642a
commit 4442ed0d2f

View File

@ -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;
}