(ctx: BuildStepGlobalContext, stepId: string)
| 29 | } |
| 30 | |
| 31 | function getTemporaryStepDirPath(ctx: BuildStepGlobalContext, stepId: string): string { |
| 32 | return path.join(ctx.stepsInternalBuildDirectory, 'steps', stepId); |
| 33 | } |
| 34 | |
| 35 | function getTemporaryScriptsDirPath(ctx: BuildStepGlobalContext, stepId: string): string { |
| 36 | return path.join(getTemporaryStepDirPath(ctx, stepId), 'scripts'); |
no outgoing calls
no test coverage detected
searching dependent graphs…