Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Sources/CoreCommands/Options.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,25 +42,25 @@ import struct Workspace.WorkspaceConfiguration
public struct GlobalOptions: ParsableArguments {
public init() {}

@OptionGroup()
@OptionGroup(title: "Paths & Locations")
public var locations: LocationOptions

@OptionGroup()
@OptionGroup(title: "Caching")
public var caching: CachingOptions

@OptionGroup()
@OptionGroup(title: "Logging")
public var logging: LoggingOptions

@OptionGroup()
@OptionGroup(title: "Security")
public var security: SecurityOptions

@OptionGroup()
@OptionGroup(title: "Resolution")
public var resolver: ResolverOptions

@OptionGroup()
@OptionGroup(title: "Build Options")
public var build: BuildOptions

@OptionGroup()
@OptionGroup(title: "Build Options")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be "Linker Options"?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has been previously discussed #8282 (comment)

public var linker: LinkerOptions
}

Expand Down