(file string)
| 2111 | } |
| 2112 | |
| 2113 | func getTempSymlinkPath(file string) (string, error) { |
| 2114 | link := file + "_symlink" |
| 2115 | err := os.Symlink(file, link) |
| 2116 | return link, err |
| 2117 | } |
| 2118 | |
| 2119 | func cleanUpTempFiles(paths []string) []error { |
| 2120 | var res []error |
no outgoing calls
no test coverage detected
searching dependent graphs…