(file string)
| 2240 | } |
| 2241 | |
| 2242 | func getTempSymlinkPath(file string) (string, error) { |
| 2243 | link := file + "_symlink" |
| 2244 | err := os.Symlink(file, link) |
| 2245 | return link, err |
| 2246 | } |
| 2247 | |
| 2248 | func cleanUpTempFiles(paths []string) []error { |
| 2249 | var res []error |
no outgoing calls
no test coverage detected