From ae89d0447bd1c3729dd323dad44407a4c416c73d Mon Sep 17 00:00:00 2001 From: Matthieu Vachon Date: Wed, 26 Sep 2018 01:46:43 -0400 Subject: [PATCH] Allow passing export_options to build lane --- Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fastfile b/Fastfile index c0c4475..d336d42 100755 --- a/Fastfile +++ b/Fastfile @@ -124,7 +124,6 @@ platform :ios do desc 'Create build and send to iTunes' private_lane :publish_itunes do build(match_type: 'appstore', export_method: 'app-store') - deliver(force: true) end @@ -184,6 +183,7 @@ platform :ios do clean: true, include_symbols: true, export_method: options[:export_method], + export_options: options[:export_options], ) end