Compare commits
1 Commits
master
...
feature/ad
| Author | SHA1 | Date |
|---|---|---|
|
|
c4cf6a0704 |
|
|
@ -266,7 +266,7 @@ def fill_up_options_using_configuration_type(options, configuration_type, keycha
|
|||
|
||||
# Check whether configuration type is required to configure one of api key parameters or not
|
||||
|
||||
if configuration_type.is_app_store || configuration_type.is_development
|
||||
if configuration_type.is_app_store || configuration_type.is_development || configuration_type.is_adhoc
|
||||
|
||||
# Check whether API key JSON file exists or not
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit a8f072f216684bd7f5563c0211f71d6637a5f92d
|
||||
Subproject commit e591d65722d78918c84c4eeda3df8c4012e75323
|
||||
|
|
@ -18,6 +18,7 @@ module Touchlane
|
|||
|
||||
@is_app_store = type == APP_STORE
|
||||
@is_development = type == DEVELOPMENT
|
||||
@is_adhoc = type == ADHOC
|
||||
|
||||
case type
|
||||
when DEVELOPMENT
|
||||
|
|
@ -43,7 +44,7 @@ module Touchlane
|
|||
|
||||
private_class_method :new
|
||||
|
||||
attr_reader :export_method, :type, :configuration, :is_app_store, :is_development, :prefix
|
||||
attr_reader :export_method, :type, :configuration, :is_app_store, :is_development, :is_adhoc, :prefix
|
||||
|
||||
def self.from_lane_name(lane_name)
|
||||
case
|
||||
|
|
|
|||
Loading…
Reference in New Issue