(properties map[string]string)
| 74 | } |
| 75 | |
| 76 | func propertyWarnings(properties map[string]string) string { |
| 77 | msgs := make([]string, 0, len(properties)) |
| 78 | for name, description := range properties { |
| 79 | msgs = append(msgs, fmt.Sprintf("%s: %s", name, description)) |
| 80 | } |
| 81 | sort.Strings(msgs) |
| 82 | return strings.Join(msgs, "\n\n") |
| 83 | } |
| 84 | |
| 85 | // getConfigDetails parse the composefiles specified in the cli and returns their ConfigDetails |
| 86 | func getConfigDetails(composefiles []string, stdin io.Reader) (composetypes.ConfigDetails, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…