engine7 7.1.0 → 7.1.1

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/dist/cli.mjs +1 -1
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -529,7 +529,7 @@ engine7 start \u2014 \u542F\u52A8 Engine
529
529
  } catch {
530
530
  }
531
531
  console.log("");
532
- const child = spawn("node", [enginePath, "--engine-config", configPath2], {
532
+ const child = spawn(process.execPath, [enginePath, "--engine-config", configPath2], {
533
533
  stdio: "inherit",
534
534
  shell: false
535
535
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "engine7",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "type": "module",
5
5
  "description": "Engine 7 — Self-hosted AI agent engine",
6
6
  "main": "dist/main.mjs",