(ctx: BuildStepGlobalContext, stepId: string)
| 37 | } |
| 38 | |
| 39 | export function getTemporaryOutputsDirPath(ctx: BuildStepGlobalContext, stepId: string): string { |
| 40 | return path.join(getTemporaryStepDirPath(ctx, stepId), 'outputs'); |
| 41 | } |
| 42 | |
| 43 | export function getTemporaryEnvsDirPath(ctx: BuildStepGlobalContext, stepId: string): string { |
| 44 | return path.join(getTemporaryStepDirPath(ctx, stepId), 'envs'); |
no test coverage detected
searching dependent graphs…