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 b1deb64 commit 6c2ebacCopy full SHA for 6c2ebac
Sources/Swiftly/Run.swift
@@ -56,6 +56,12 @@ 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
+ print(Run.helpMessage(for: Run.self))
62
+ Foundation.exit(0)
63
+ }
64
+
65
var config = try Config.load()
66
67
let (command, selector) = try extractProxyArguments(command: self.command)
0 commit comments