(args ...string)
| 1167 | } |
| 1168 | |
| 1169 | func gitWithoutEmptyStrings(args ...string) { |
| 1170 | argsWithoutEmptyStrings := deleteEmptyStrings(args) |
| 1171 | git(argsWithoutEmptyStrings...) |
| 1172 | } |
| 1173 | |
| 1174 | func git(args ...string) { |
| 1175 | say.Indented("git " + strings.Join(args, " ")) |
no test coverage detected