Skip to content

Commit

Permalink
Fix InsertJsonValues script
Browse files Browse the repository at this point in the history
I believe that `LibraryName` here is a typo considering that it is in a loop and we couldn't just replace it with a fixed string (even one that is specific to the repo)
  • Loading branch information
matteo-prosperi authored Jan 10, 2025
1 parent 6654a67 commit 04a9a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/variables/InsertJsonValues.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if (Test-Path $BasePath) {
Get-ChildItem $BasePath *.vsman -Recurse -File |% {
$version = (Get-Content $_.FullName | ConvertFrom-Json).info.buildVersion
$fn = $_.Name
$vsmanFiles += "LibraryName.vsman{$version}=https://vsdrop.corp.microsoft.com/file/v1/$vstsDropNames;$fn"
$vsmanFiles += "$fn.vsman{$version}=https://vsdrop.corp.microsoft.com/file/v1/$vstsDropNames;$fn"
}

[string]::join(',',$vsmanFiles)
Expand Down

0 comments on commit 04a9a8d

Please sign in to comment.