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.
- package/package.json +1 -1
- package/src/cli/index.ts +2 -2
package/package.json
CHANGED
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' ? '
|
|
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' ? '
|
|
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
|
|