(prefix string)
| 58 | type ManifestPathWithExistenceCheck string |
| 59 | |
| 60 | func (ManifestPathWithExistenceCheck) Complete(prefix string) []flags.Completion { |
| 61 | return completeWithTilde(prefix) |
| 62 | } |
| 63 | |
| 64 | func (p *ManifestPathWithExistenceCheck) UnmarshalFlag(path string) error { |
| 65 | fileInfo, err := checkIfFileExists(path) |
nothing calls this directly
no test coverage detected