Skip to content

Commit

Permalink
fix(macCatalyst): construct correct path for executable
Browse files Browse the repository at this point in the history
it appears targetBuildDir var now has `-maccatalyst` in it before it gets to this method, so no need to add it again
  • Loading branch information
mikehardy authored Sep 18, 2024
1 parent a414d98 commit 714bd16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function getBuildPath(
}

if (isCatalyst) {
return path.join(`${targetBuildDir}-maccatalyst`, executableFolderPath);
return path.join(targetBuildDir, executableFolderPath);
} else if (platform === 'macos') {
return path.join(targetBuildDir, fullProductName);
} else {
Expand Down

0 comments on commit 714bd16

Please sign in to comment.