We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7517530 commit 0550466Copy full SHA for 0550466
Sources/Swiftly/Run.swift
@@ -56,6 +56,11 @@ internal struct Run: SwiftlyCommand {
56
internal mutating func run() async throws {
57
try validateSwiftly()
58
59
+ // Handle the specific case where help is requested of the run subcommand
60
+ if command == ["--help"] {
61
+ throw CleanExit.helpRequest(self)
62
+ }
63
+
64
var config = try Config.load()
65
66
let (command, selector) = try extractProxyArguments(command: self.command)
0 commit comments