fixInstallableArg calls fixInstallableArgs with a single argument.
(arg string)
| 288 | |
| 289 | // fixInstallableArg calls fixInstallableArgs with a single argument. |
| 290 | func FixInstallableArg(arg string) string { |
| 291 | args := []string{arg} |
| 292 | FixInstallableArgs(args) |
| 293 | return args[0] |
| 294 | } |
no test coverage detected