(path string)
| 206 | } |
| 207 | |
| 208 | func createDir(path string) error { |
| 209 | if path == "" { |
| 210 | return nil |
| 211 | } |
| 212 | return errors.WithStack(os.MkdirAll(path, 0o755)) |
| 213 | } |
| 214 | |
| 215 | func createSymlink(root, filePath string) error { |
| 216 | name := filepath.Base(filePath) |
no outgoing calls
no test coverage detected