We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af28c7a commit 0b78b71Copy full SHA for 0b78b71
packages/cli-platform-apple/src/commands/runCommand/getBuildPath.ts
@@ -25,7 +25,7 @@ export async function getBuildPath(
25
}
26
27
if (isCatalyst) {
28
- return path.join(targetBuildDir, '-maccatalyst', executableFolderPath);
+ return path.join(`${targetBuildDir}-maccatalyst`, executableFolderPath);
29
} else if (platform === 'macos') {
30
return path.join(targetBuildDir, fullProductName);
31
} else {
0 commit comments