Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: pass electronVersion through to getBinaryPath
  • Loading branch information
goosewobbler committed May 16, 2024
commit fb21c3e8c20959371d325721daa80d8c693e6291
2 changes: 1 addition & 1 deletion src/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class ElectronLaunchService implements Services.ServiceInstance {
log.debug('No app binary found');
try {
const appBuildInfo = await getAppBuildInfo(pkg);
appBinaryPath = await getBinaryPath(pkg.path, appBuildInfo);
appBinaryPath = await getBinaryPath(pkg.path, appBuildInfo, electronVersion);

log.debug(`Detected app binary at ${appBinaryPath}`);
const appExists = await fileExists(appBinaryPath as PathLike);
Expand Down