We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a77ea commit be095e5Copy full SHA for be095e5
Sources/Swiftly/Proxy.swift
@@ -31,6 +31,10 @@ public enum Proxy {
31
// Let the user run the init command with their arguments, if any.
32
await Swiftly.main()
33
return
34
+ } else if CommandLine.arguments.count == 2 && (CommandLine.arguments[1] == "--help" || CommandLine.arguments[1] == "--experimental-dump-help") {
35
+ // Allow the showing of help information
36
+ await Swiftly.main()
37
+ return
38
} else {
39
// We've been invoked outside the "init" subcommand and we're not yet configured.
40
// This will throw if the configuration couldn't be loaded and give the user an actionable message.
0 commit comments