(format string, args ...interface{})
| 69 | } |
| 70 | |
| 71 | func printProgress(format string, args ...interface{}) { |
| 72 | // TODO: Adjust all our commands to use a common function to output |
| 73 | // progress messages to stderr, following Git's model. |
| 74 | Error(format, args...) |
| 75 | } |
| 76 | |
| 77 | func getIncludeExcludeArgs(cmd *cobra.Command) (include, exclude *string) { |
| 78 | includeFlag := cmd.Flag("include") |
no test coverage detected