Skip to content

Commit 714bd16

Browse files
authored
fix(macCatalyst): construct correct path for executable
it appears targetBuildDir var now has `-maccatalyst` in it before it gets to this method, so no need to add it again
1 parent a414d98 commit 714bd16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-platform-apple/src/commands/runCommand/getBuildPath.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export async function getBuildPath(
2525
}
2626

2727
if (isCatalyst) {
28-
return path.join(`${targetBuildDir}-maccatalyst`, executableFolderPath);
28+
return path.join(targetBuildDir, executableFolderPath);
2929
} else if (platform === 'macos') {
3030
return path.join(targetBuildDir, fullProductName);
3131
} else {

0 commit comments

Comments
 (0)