diff --git a/packages/cli-platform-apple/src/commands/runCommand/getBuildPath.ts b/packages/cli-platform-apple/src/commands/runCommand/getBuildPath.ts index f8020c3c1..670fb788b 100644 --- a/packages/cli-platform-apple/src/commands/runCommand/getBuildPath.ts +++ b/packages/cli-platform-apple/src/commands/runCommand/getBuildPath.ts @@ -25,7 +25,7 @@ export async function getBuildPath( } if (isCatalyst) { - return path.join(targetBuildDir, '-maccatalyst', executableFolderPath); + return path.join(`${targetBuildDir}-maccatalyst`, executableFolderPath); } else if (platform === 'macos') { return path.join(targetBuildDir, fullProductName); } else {