cdp-saw 1.1.6 → 1.1.7

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -10,7 +10,7 @@ const net = require('net');
10
10
  // --- DETACH LOGIC ---
11
11
  if (process.argv.includes('--detach')) {
12
12
  const args = process.argv.slice(2).filter(a => a !== '--detach');
13
- const child = spawn(process.execPath, [process.argv[1], ...args], {
13
+ const child = spawn(process.execPath, [__filename, ...args], {
14
14
  detached: true,
15
15
  stdio: 'ignore'
16
16
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdp-saw",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Ultimate Stealth Exam Injector & Ghost Solver for CDP-based proctoring systems.",
5
5
  "main": "index.js",
6
6
  "bin": {