(value bool)
| 339 | } |
| 340 | |
| 341 | func LookupPackageDownloadString(value bool) string { |
| 342 | if value { |
| 343 | return "Use cached packages (if available)" |
| 344 | } else { |
| 345 | return "Re-download packages from feed" |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | // splitVariableString is a derivative of splitPackageOverrideString in release create. |
| 350 | // it is required because the builtin go strings.SplitN can't handle more than one delimeter character. |
no outgoing calls
no test coverage detected