diff --git a/desktop/app/src/utils/iOSContainerUtility.tsx b/desktop/app/src/utils/iOSContainerUtility.tsx index 3930a8f15..87d314862 100644 --- a/desktop/app/src/utils/iOSContainerUtility.tsx +++ b/desktop/app/src/utils/iOSContainerUtility.tsx @@ -262,7 +262,7 @@ function wrapWithErrorMessage(p: Promise): Promise { async function isXcodeDetected(): Promise { return exec('xcode-select -p') .then(({stdout}) => { - return fs.pathExists(stdout); + return fs.pathExists(stdout.trim()); }) .catch((_) => false); }