electrobun 0.0.19-beta.34 → 0.0.19-beta.35

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/package.json +1 -1
  2. package/src/cli/index.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electrobun",
3
- "version": "0.0.19-beta.34",
3
+ "version": "0.0.19-beta.35",
4
4
  "description": "Build ultra fast, tiny, and cross-platform desktop apps with Typescript.",
5
5
  "license": "MIT",
6
6
  "author": "Blackboard Technologies Inc.",
package/src/cli/index.ts CHANGED
@@ -128,7 +128,7 @@ async function ensureCoreDependencies() {
128
128
  }
129
129
  }
130
130
 
131
- const platformName = OS === 'macos' ? 'darwin' : OS === 'win' ? 'win32' : 'linux';
131
+ const platformName = OS === 'macos' ? 'darwin' : OS === 'win' ? 'win' : 'linux';
132
132
  const archName = ARCH;
133
133
  const coreTarballUrl = `https://github.com/blackboardsh/electrobun/releases/download/${version}/electrobun-core-${platformName}-${archName}.tar.gz`;
134
134
 
@@ -200,7 +200,7 @@ async function ensureCEFDependencies() {
200
200
  }
201
201
  }
202
202
 
203
- const platformName = OS === 'macos' ? 'darwin' : OS === 'win' ? 'win32' : 'linux';
203
+ const platformName = OS === 'macos' ? 'darwin' : OS === 'win' ? 'win' : 'linux';
204
204
  const archName = ARCH;
205
205
  const cefTarballUrl = `https://github.com/blackboardsh/electrobun/releases/download/${version}/electrobun-cef-${platformName}-${archName}.tar.gz`;
206
206