remove useless code
This commit is contained in:
parent
d57333f5d1
commit
8ecb0c6892
|
|
@ -96,8 +96,7 @@ private_lane :buildConfiguration do |options|
|
|||
configuration_type = Touchlane::ConfigurationType.from_lane_name(lane_name)
|
||||
configuration = get_configuration_for_type(configuration_type.type)
|
||||
|
||||
options = configuration.to_options()
|
||||
.merge(configuration_type.to_options())
|
||||
options = configuration.to_options
|
||||
.merge(get_keychain_options(options))
|
||||
.merge(options)
|
||||
|
||||
|
|
@ -213,7 +212,7 @@ end
|
|||
|
||||
lane :SyncSymbols do |options|
|
||||
configuration = get_configuration_for_type(options[:type])
|
||||
options = configuration.to_options().merge(options)
|
||||
options = configuration.to_options.merge(options)
|
||||
|
||||
appName = options[:appName] || $appName
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue