Unverified Commit a80d557b authored by xster's avatar xster Committed by GitHub

The options hash param was on the wrong line (#16194)

parent d6be4f55
...@@ -19,9 +19,9 @@ end ...@@ -19,9 +19,9 @@ end
# rebuild the app by: # rebuild the app by:
# 1- Signing using the publishing credentials; and # 1- Signing using the publishing credentials; and
# 2- xcodebuild with archive option # 2- xcodebuild with archive option
platform :ios do |options| platform :ios do
desc 'Push a new release to TestFlight' desc 'Push a new release to TestFlight'
lane :build_and_deploy_testflight do lane :build_and_deploy_testflight do |options|
# Doesn't do anything when not on Travis. # Doesn't do anything when not on Travis.
setup_travis setup_travis
...@@ -73,7 +73,7 @@ platform :ios do |options| ...@@ -73,7 +73,7 @@ platform :ios do |options|
codesigning_identity: 'iPhone Distribution: Store Ladd (S8QB4VV633)', codesigning_identity: 'iPhone Distribution: Store Ladd (S8QB4VV633)',
) )
if options && options[:upload] if options[:upload]
upload_to_testflight upload_to_testflight
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment