TargetPath delegates to entities.InstructionPath to resolve the concrete install path for an instruction on a given app/level.
(app string, level entities.InstallLevel, projectDir string)
| 47 | // TargetPath delegates to entities.InstructionPath to resolve the concrete |
| 48 | // install path for an instruction on a given app/level. |
| 49 | func TargetPath(app string, level entities.InstallLevel, projectDir string) (string, error) { |
| 50 | return entities.InstructionPath(app, level, projectDir) |
| 51 | } |