(workdir, path string)
| 83 | } |
| 84 | |
| 85 | func relativePathToAbs(workdir, path string) string { |
| 86 | path = os.ExpandEnv(path) |
| 87 | if !filepath.IsAbs(path) { |
| 88 | path = filepath.Join(workdir, path) |
| 89 | } |
| 90 | return path |
| 91 | } |
no outgoing calls
no test coverage detected