Skip to content

Commit 680581c

Browse files
authored
Merge pull request #1221 from MarcoEidinger/package-collection
Add package-collection subcommand to swift help
2 parents 590f1d0 + 73e178b commit 680581c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/swift-help/main.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ enum HelpTopic: ExpressibleByArgument, CustomStringConvertible {
4747
}
4848

4949
enum Subcommand: String, CaseIterable {
50-
case build, package, packageRegistry = "package-registry", run, test
50+
case build, package, packageRegistry = "package-registry", packageCollection = "package-collection", run, test
5151

5252
var description: String {
5353
switch self {
@@ -57,6 +57,8 @@ enum Subcommand: String, CaseIterable {
5757
return "Create and work on packages"
5858
case .packageRegistry:
5959
return "Interact with package registry and manage related configuration"
60+
case .packageCollection:
61+
return "Interact with package collections"
6062
case .run:
6163
return "Run a program from a package"
6264
case .test:

0 commit comments

Comments
 (0)