(elem pathSpec)
| 110 | } |
| 111 | |
| 112 | func (p remotePath) Join(elem pathSpec) remotePath { |
| 113 | return newRemotePath(path.Join(p.file, elem.String())) |
| 114 | } |
| 115 | |
| 116 | func (p remotePath) StripShortcuts() remotePath { |
| 117 | p = p.Clean() |
nothing calls this directly
no test coverage detected