Skip to content

Commit bba4c2e

Browse files
committed
Fix path 5
1 parent 9fdc77f commit bba4c2e

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.azure-pipelines/PipelineSteps/BatchGeneration/batch-generate-modules.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ foreach ($moduleName in $sortedModuleNames) {
9696
$date = Get-Date -Format "dd/MM/yy"
9797
$newChangeLogEntry = "* Autorest version: $AutorestVersion - $date"
9898
$changeLogContent.Insert(1, $newChangeLogEntry)
99-
Set-Content $changelogPath -Value $changeLogContent
99+
Set-Content $changeLogPath -Value $changeLogContent
100100
$moduleResult.Changed = "Yes, Autorest Change Log Updated"
101101
Write-Host "New change log entry added to $changeLogPath"
102102
}

.azure-pipelines/PipelineSteps/BatchGeneration/prepare.ps1

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ Import-Module $utilFilePath -Force
99

1010
$srcPath = Join-Path $RepoRoot 'src'
1111
$moduleMap = Get-AutorestV4ModuleMap -srcPath $srcPath
12-
$moduleMap = @{
13-
"DeviceRegistry" = @("DeviceRegistry.Autorest")
14-
}
1512
Write-Host "Total matched modules: $($moduleMap.Count)"
1613

1714
$modules = @($moduleMap.Keys | Sort-Object)

0 commit comments

Comments
 (0)