lib/pilot/options.rb in pilot-0.1.6 vs lib/pilot/options.rb in pilot-0.1.7

- old
+ new

@@ -7,14 +7,10 @@ @@options ||= [ FastlaneCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "PILOT_USERNAME", description: "Your Apple ID Username", - default_value: ENV["DELIVER_USER"] || CredentialsManager::AppfileConfig.try_fetch_value(:apple_id), - verify_block: proc do |value| - CredentialsManager::PasswordManager.shared_manager(value) - end), - + default_value: CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)), FastlaneCore::ConfigItem.new(key: :ipa, short_option: "-i", env_name: "PILOT_IPA", description: "Path to the ipa file to upload", default_value: Dir["*.ipa"].first,