(src, dst string, opts putOptions)
| 728 | } |
| 729 | |
| 730 | func putRecursiveWithResults(src, dst string, opts putOptions) ([]putResult, []jsonWarning, error) { |
| 731 | return putRecursiveInternal(src, dst, opts, true) |
| 732 | } |
| 733 | |
| 734 | func putRecursiveInternal(src, dst string, opts putOptions, collectResults bool) ([]putResult, []jsonWarning, error) { |
| 735 | src = filepath.Clean(src) |
no test coverage detected