File tree Expand file tree Collapse file tree
Sources/AppStoreConnectCLI/Commands/TestFlight/BetaGroups/Sync Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ struct PullBetaGroupsCommand: CommonParsableCommand {
77
88 static var configuration = CommandConfiguration (
99 commandName: " pull " ,
10- abstract: " Pull down server beta groups, refresh local beta group config files "
10+ abstract: " Pull down existing beta groups, refreshing local beta group config files "
1111 )
1212
1313 @OptionGroup ( )
1414 var common : CommonOptions
1515
1616 @Option (
1717 default: " ./config/betagroups " ,
18- help: " Path to the Folder containing the information about beta groups. (default: './config/betagroups') "
18+ help: " Path to the Folder containing the information about beta groups. "
1919 ) var outputPath : String
2020
2121 func run( ) throws {
Original file line number Diff line number Diff line change @@ -5,13 +5,10 @@ import ArgumentParser
55struct SyncBetaGroupsCommand : ParsableCommand {
66 static var configuration = CommandConfiguration (
77 commandName: " sync " ,
8- abstract: """
9- Sync information about beta groups with provided configuration file.
10- """ ,
8+ abstract: " Sync information about beta groups with provided configuration file. " ,
119 subcommands: [
1210 PullBetaGroupsCommand . self,
1311 PushBetaGroupsCommand . self,
14- ] ,
15- defaultSubcommand: PullBetaGroupsCommand . self
12+ ]
1613 )
1714}
You can’t perform that action at this time.
0 commit comments