Skip to content

Commit 0b78b71

Browse files
authored
fix(macCatalyst): construct correct path for macCatalyst build (#2312)
1 parent af28c7a commit 0b78b71

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)