ee-core 2.9.1 → 2.9.2-beta.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.
@@ -58,9 +58,13 @@ class SpawnProcess {
58
58
  cmdPath = path.join(Ps.getExtraResourcesDir(), targetConf.name);
59
59
  }
60
60
 
61
- // windonw
61
+ // windows
62
62
  if (UtilsIs.windows() && path.extname(cmdPath) != '.exe') {
63
- cmdPath += ".exe";
63
+ // Complete the executable program extension
64
+ // notice: python.exe may bring up the App Store
65
+ if (targetConf.windowsExtname === true || !Ps.isDev()) {
66
+ cmdPath += ".exe";
67
+ }
64
68
  }
65
69
 
66
70
  // executable program directory
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ee-core",
3
- "version": "2.9.1",
3
+ "version": "2.9.2-beta.1",
4
4
  "description": "ee core",
5
5
  "main": "index.js",
6
6
  "scripts": {