Skip to content

Commit 0e381c0

Browse files
committed
Reformat Pull betagroup command desc, remove default command for sync
1 parent cb7cc95 commit 0e381c0

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

Sources/AppStoreConnectCLI/Commands/TestFlight/BetaGroups/Sync/PullBetaGroupsCommand.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

Sources/AppStoreConnectCLI/Commands/TestFlight/BetaGroups/Sync/SyncBetaGroupsCommand.swift

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@ import ArgumentParser
55
struct 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
}

0 commit comments

Comments
 (0)