chore: Update repo links

This commit is contained in:
Rashil Gandhi
2021-12-16 01:09:21 +05:30
parent cd6d31dae8
commit cbe29eddb3
6 changed files with 7 additions and 7 deletions

View File

@@ -162,7 +162,7 @@ function normalize_values([psobject] $json) {
# Recursively edit psobjects
# If the values is psobjects, its not normalized
# For example if manifest have architecture and it's architecture have array with single value it's not formatted.
# @see https://github.com/lukesampson/scoop/pull/2642#issue-220506263
# @see https://github.com/ScoopInstaller/Scoop/pull/2642#issue-220506263
if ($_.Value -is [System.Management.Automation.PSCustomObject]) {
$_.Value = normalize_values $_.Value
}