(string cmd, string version)
| 47 | } |
| 48 | |
| 49 | static int UnknownCommand(string cmd, string version) |
| 50 | { |
| 51 | Console.Error.WriteLine($"Unknown command: {cmd}"); |
| 52 | Console.Error.WriteLine(); |
| 53 | PrintHelp(version); |
| 54 | return 1; |
| 55 | } |
| 56 | |
| 57 | static int RunStFixer() |
| 58 | { |
nothing calls this directly
no outgoing calls
no test coverage detected