(err *files.WriteError)
| 698 | } |
| 699 | |
| 700 | func isWriteFileConflict(err *files.WriteError) bool { |
| 701 | return err != nil && |
| 702 | err.Tag == files.WriteErrorConflict && |
| 703 | err.Conflict != nil && |
| 704 | err.Conflict.Tag == files.WriteConflictErrorFile |
| 705 | } |
| 706 | |
| 707 | func reportPutSkipped(opts putOptions, dst string) { |
| 708 | putOutput(opts).Status("Skipping %s (already exists)", dst) |
no outgoing calls
no test coverage detected