From 6f65d3fce9527e731ba26f339bd8aa40b4c8c7d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Fri, 15 Nov 2019 16:45:46 +0100 Subject: [PATCH] fix: temporary fix for a regression in monorepos --- packages/platform-android/native_modules.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/platform-android/native_modules.gradle b/packages/platform-android/native_modules.gradle index 85d65d7e6..b82f32541 100644 --- a/packages/platform-android/native_modules.gradle +++ b/packages/platform-android/native_modules.gradle @@ -191,7 +191,7 @@ class ReactNativeModules { * (e.g. when running with -p flag), in which case npx wouldn't resolve correct `react-native` binary. */ def dir = new File(this.jsAppDir) - def reactNativeConfigOutput = this.getCommandOutput(command, dir) + def reactNativeConfigOutput = this.getCommandOutput(command, /* dir */) // Temporary disable changing dir, as it introduces regressions def json try { json = new JsonSlurper().parseText(reactNativeConfigOutput)