From 5c4b2951af20ec9a6f532c8a125e0eaddc7e90bc Mon Sep 17 00:00:00 2001 From: mharle Date: Mon, 10 Jul 2017 16:29:14 +0100 Subject: [PATCH] Do not search recursively in glob for ios. --- scripts/postlink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postlink b/scripts/postlink index 3b8dbefa14..0333c4b9a3 100644 --- a/scripts/postlink +++ b/scripts/postlink @@ -407,7 +407,7 @@ function addSentryProperties() { Promise.resolve() /* these steps patch the build files without user interactions */ .then(() => patchMatchingFile('**/app/build.gradle', patchBuildGradle)) - .then(() => patchMatchingFile('**/*.xcodeproj/project.pbxproj', patchXcodeProj)) + .then(() => patchMatchingFile('*/*.xcodeproj/project.pbxproj', patchXcodeProj)) .then(() => patchMatchingFile('**/AppDelegate.m', patchAppDelegate)) /* if any of the previous steps did something, this will patch the index.PLATFORM.js files with the necessary initialization code */