Skip to content

Commit d9539e6

Browse files
mikehardyszymonrybczak
authored andcommitted
fix(macCatalyst): construct correct path for macCatalyst build (#2312)
1 parent 54d48a4 commit d9539e6

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

Lines changed: 1 addition & 1 deletion
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}-maccatalyst`, executableFolderPath);
2929
} else if (platform === 'macos') {
3030
return path.join(targetBuildDir, fullProductName);
3131
} else {

0 commit comments

Comments
 (0)