electrobun 0.0.19-beta.94 → 0.0.19-beta.95
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
|
@@ -1445,7 +1445,7 @@ if (commandArg === "init") {
|
|
|
1445
1445
|
dereference: true,
|
|
1446
1446
|
});
|
|
1447
1447
|
|
|
1448
|
-
buildIcons(appBundleFolderResourcesPath);
|
|
1448
|
+
buildIcons(selfExtractingBundle.appBundleFolderResourcesPath);
|
|
1449
1449
|
await Bun.write(
|
|
1450
1450
|
join(selfExtractingBundle.appBundleFolderContentsPath, "Info.plist"),
|
|
1451
1451
|
InfoPlistContents
|
|
@@ -1477,7 +1477,7 @@ if (commandArg === "init") {
|
|
|
1477
1477
|
// Note: use ULFO (lzfse) for better compatibility with large CEF frameworks and modern macOS
|
|
1478
1478
|
execSync(
|
|
1479
1479
|
`hdiutil create -volname "${appFileName}" -srcfolder ${escapePathForTerminal(
|
|
1480
|
-
appBundleFolderPath
|
|
1480
|
+
selfExtractingBundle.appBundleFolderPath
|
|
1481
1481
|
)} -ov -format ULFO ${escapePathForTerminal(dmgPath)}`
|
|
1482
1482
|
);
|
|
1483
1483
|
|