()
| 106 | } |
| 107 | |
| 108 | func (p remotePath) Clean() remotePath { |
| 109 | return newRemotePath(path.Clean(p.file)) |
| 110 | } |
| 111 | |
| 112 | func (p remotePath) Join(elem pathSpec) remotePath { |
| 113 | return newRemotePath(path.Join(p.file, elem.String())) |
no test coverage detected