Skip to content

Commit 3773412

Browse files
authored
Update descriptions of some config items (#352)
1 parent fc0d7b9 commit 3773412

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def self.available_options
368368

369369
# Release Distribution
370370
FastlaneCore::ConfigItem.new(key: :upload_timeout,
371-
description: "The amount of seconds before the upload will timeout, if not completed",
371+
description: "Amount of seconds before the upload will timeout, if not completed",
372372
optional: true,
373373
default_value: DEFAULT_UPLOAD_TIMEOUT_SECONDS,
374374
type: Integer),
@@ -379,17 +379,17 @@ def self.available_options
379379
type: String),
380380
FastlaneCore::ConfigItem.new(key: :groups_file,
381381
env_name: "FIREBASEAPPDISTRO_GROUPS_FILE",
382-
description: "The group aliases used for distribution, separated by commas",
382+
description: "Path to file containing group aliases used for distribution, separated by commas",
383383
optional: true,
384384
type: String),
385385
FastlaneCore::ConfigItem.new(key: :testers,
386386
env_name: "FIREBASEAPPDISTRO_TESTERS",
387-
description: "Pass email addresses of testers, separated by commas",
387+
description: "Email addresses of testers, separated by commas",
388388
optional: true,
389389
type: String),
390390
FastlaneCore::ConfigItem.new(key: :testers_file,
391391
env_name: "FIREBASEAPPDISTRO_TESTERS_FILE",
392-
description: "Pass email addresses of testers, separated by commas",
392+
description: "Path to file containing email addresses of testers, separated by commas",
393393
optional: true,
394394
type: String),
395395
FastlaneCore::ConfigItem.new(key: :release_notes,
@@ -399,7 +399,7 @@ def self.available_options
399399
type: String),
400400
FastlaneCore::ConfigItem.new(key: :release_notes_file,
401401
env_name: "FIREBASEAPPDISTRO_RELEASE_NOTES_FILE",
402-
description: "Release notes file for this build",
402+
description: "Path to file containing release notes for this build",
403403
optional: true,
404404
type: String),
405405

@@ -409,7 +409,7 @@ def self.available_options
409409
optional: true,
410410
type: String),
411411
FastlaneCore::ConfigItem.new(key: :service_credentials_file,
412-
description: "Path to Google service account json",
412+
description: "Path to Google service account json file",
413413
optional: true,
414414
type: String)
415415
]

0 commit comments

Comments
 (0)