replace timeout: false with timeout: 0 according to https://github.com/fastlane/fastlane/pull/18894
This commit is contained in:
parent
79105bf5f9
commit
e0913de8a3
|
|
@ -237,7 +237,7 @@ private_lane :openKeychain do |options|
|
||||||
name: options[:keychain_name],
|
name: options[:keychain_name],
|
||||||
password: options[:keychain_password],
|
password: options[:keychain_password],
|
||||||
unlock: true,
|
unlock: true,
|
||||||
timeout: false,
|
timeout: 0,
|
||||||
add_to_search_list: !keychain_exists
|
add_to_search_list: !keychain_exists
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue