File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
.azure-pipelines/PipelineSteps/BatchGeneration Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,11 @@ foreach ($moduleGroup in $groupedModules) {
34
34
$index ++
35
35
}
36
36
37
- $generationTargetsOutputDir = Join-Path $RepoRoot " artifacts"
38
- if (-not (Test-Path - Path $generationTargetsOutputDir )) {
39
- New-Item - ItemType Directory - Path $generationTargetsOutputDir
37
+ $artifactsDir = Join-Path $RepoRoot " artifacts"
38
+ if (-not (Test-Path - Path $artifactsDir )) {
39
+ New-Item - ItemType Directory - Path $artifactsDir
40
40
}
41
- $generationTargetsOutputFile = Join-Path $generationTargetsOutputDir " generationTargets.json"
41
+ $generationTargetsOutputFile = Join-Path $artifactsDir " generationTargets.json"
42
42
$generationTargets | ConvertTo-Json - Depth 5 | Out-File - FilePath $generationTargetsOutputFile - Encoding utf8
43
43
44
44
if ($MatrixStr -and $MatrixStr.Length -gt 1 ) {
You can’t perform that action at this time.
0 commit comments