(path string, reference string)
| 10 | ) |
| 11 | |
| 12 | func GetAbsPathRelativeTo(path string, reference string) string { |
| 13 | if filepath.IsAbs(path) { |
| 14 | return path |
| 15 | } else { |
| 16 | return filepath.Join(reference, path) |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | func ValidateEnvironment(dependencies ...string) { |
| 21 | missingDepencies := make([]string, 0) |
no outgoing calls
no test coverage detected