From 263d4045f7e3cc817e9cbfe4c7be391c014cdb74 Mon Sep 17 00:00:00 2001 From: Tommy Nguyen Date: Tue, 23 Jun 2020 23:37:28 +0200 Subject: [PATCH] fix(iOS): Flipper is still built when disabled --- ios/test_app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/test_app.rb b/ios/test_app.rb index 283929b5d..01a30ce26 100644 --- a/ios/test_app.rb +++ b/ios/test_app.rb @@ -118,7 +118,7 @@ def use_react_native!(project_root, target_platform) include_react_native!(react_native: react_native.relative_path_from(project_root).to_s, target_platform: target_platform, project_root: project_root, - flipper_versions: @flipper_versions || {}) + flipper_versions: @flipper_versions != false && (@flipper_versions || {})) end def make_project!(xcodeproj, project_root, target_platform)