Skip to content

Commit

Permalink
fix operator
Browse files Browse the repository at this point in the history
  • Loading branch information
anamnavi committed Apr 22, 2024
1 parent bd0d6fc commit a612006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/updateBuildYamls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
$ciFolderPath = Join-Path -Path ${{ github.workspace }} -ChildPath '.vsts-ci'
$releaseStageFilePath = Join-Path -Path $ciFolderPath -ChildPath 'stableReleaseStage.yml'
$content = Get-Content -Path $releaseStageFilePath
for($i=0; $i<$content.Length;$i++)
for($i=0; $i -lt $content.Length;$i++)
{
Write-Verbose -Verbose $content[$i]
}
Expand Down

0 comments on commit a612006

Please sign in to comment.