fastlane/lib/fastlane/actions/environment_variable.rb in fastlane_hotfix-2.165.1 vs fastlane/lib/fastlane/actions/environment_variable.rb in fastlane_hotfix-2.187.0
- old
+ new
@@ -27,30 +27,22 @@
"taquitos"
end
def self.available_options
[
- FastlaneCore::ConfigItem.new(
- key: :set,
- env_name: 'FL_ENVIRONMENT_VARIABLE_SET',
- description: 'Set the environment variables named',
- optional: true,
- type: Hash
- ),
- FastlaneCore::ConfigItem.new(
- key: :get,
- env_name: 'FL_ENVIRONMENT_VARIABLE_GET',
- description: 'Get the environment variable named',
- optional: true,
- is_string: true
- ),
- FastlaneCore::ConfigItem.new(
- key: :remove,
- env_name: 'FL_ENVIRONMENT_VARIABLE_REMOVE',
- description: 'Remove the environment variable named',
- optional: true,
- is_string: true
- )
+ FastlaneCore::ConfigItem.new(key: :set,
+ env_name: 'FL_ENVIRONMENT_VARIABLE_SET',
+ description: 'Set the environment variables named',
+ optional: true,
+ type: Hash),
+ FastlaneCore::ConfigItem.new(key: :get,
+ env_name: 'FL_ENVIRONMENT_VARIABLE_GET',
+ description: 'Get the environment variable named',
+ optional: true),
+ FastlaneCore::ConfigItem.new(key: :remove,
+ env_name: 'FL_ENVIRONMENT_VARIABLE_REMOVE',
+ description: 'Remove the environment variable named',
+ optional: true)
]
end
def self.description
"Sets/gets env vars for Fastlane.swift. Don't use in ruby, use `ENV[key] = val`"