Fixed website with FireFox running in strict privacy mode.

This commit is contained in:
Ylian Saint-Hilaire 2020-01-29 11:01:33 -08:00
parent 90b060016c
commit 02217b5032
2 changed files with 12 additions and 8 deletions

View File

@ -2281,6 +2281,10 @@ function mainStart() {
// Check the NodeJS is version 6 or better.
if (Number(process.version.match(/^v(\d+\.\d+)/)[1]) < 6) { console.log("MeshCentral requires Node v6 or above, current version is " + process.version + "."); return; }
// If running within the node_modules folder, move working directory back to parent.
if (process.cwd().endsWith('\\node_modules\\meshcentral') || process.cwd().endsWith('/node_modules/meshcentral')) { process.chdir(require('path').join(process.cwd(), '..', '..')); }
if (process.cwd().endsWith('\\node_modules') || process.cwd().endsWith('/node_modules')) { process.chdir(require('path').join(process.cwd(), '..')); }
// Check for any missing modules.
InstallModules(['minimist'], function () {
// Parse inbound arguments

File diff suppressed because one or more lines are too long