()
| 88 | } |
| 89 | |
| 90 | func (ctx *BuildContext) Path() string { |
| 91 | if ctx.path != "" { |
| 92 | return ctx.path |
| 93 | } |
| 94 | |
| 95 | ctx.buildPath() |
| 96 | return ctx.path |
| 97 | } |
| 98 | |
| 99 | func (ctx *BuildContext) Exists() (meta *BuildMeta, ok bool, err error) { |
| 100 | key := ctx.Path() |
no test coverage detected