Skip to content

Commit 8975e1d

Browse files
authored
[release/v7.5] Fix path to metadata.json in channel selection script (#26400)
1 parent 8d08758 commit 8975e1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.pipelines/templates/channelSelection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
steps:
22
- pwsh: |
33
# Determine LTS, Preview, or Stable
4-
$metadata = Get-Content "$repoRoot/tools/metadata.json" -Raw | ConvertFrom-Json
4+
$metadata = Get-Content "$(Build.SourcesDirectory)/PowerShell/tools/metadata.json" -Raw | ConvertFrom-Json
55
$LTS = $metadata.LTSRelease.Latest
66
$Stable = $metadata.StableRelease.Latest
77
$isPreview = '$(OutputReleaseTag.releaseTag)' -match '-'

0 commit comments

Comments
 (0)