From 2cd0b029d5085dade3ab9f931a00e8482811b945 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Fri, 23 Aug 2019 13:57:38 +0300 Subject: [PATCH] select AppStore xcconfig for AppStoreRelease lane --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index d04431b..06cb474 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -307,7 +307,7 @@ end def make_options_for_lane_name(lane_name) method = configuration_type_from_lane_name(lane_name) return { - :configuration => lane_name, + :configuration => lane_name.start_with?("AppStore") ? "AppStore" : lane_name, :configuration_name => lane_name.start_with?("AppStore") ? "AppStore" : "Release", :method => method, :type => profile_type_from_configuration_type(method)