(cmd, root *cobra.Command)
| 143 | } |
| 144 | |
| 145 | func commandPath(cmd, root *cobra.Command) string { |
| 146 | full := cmd.CommandPath() |
| 147 | rootPath := root.CommandPath() |
| 148 | trimmed := strings.TrimPrefix(full, rootPath) |
| 149 | return strings.TrimSpace(trimmed) |
| 150 | } |
| 151 | |
| 152 | func buildCommand(cmd *cobra.Command) Command { |
| 153 | out := Command{ |