Fix assignment of object values (#631)
This commit is contained in:
parent
6b1043fc3f
commit
0470ff8142
@ -28,13 +28,13 @@ function Get-cpp-PackageInfoFromPackageFile($pkg, $workingDirectory)
|
||||
}
|
||||
|
||||
return New-Object PSObject -Property @{
|
||||
PackageId $pkgName
|
||||
PackageVersion $pkgVersion
|
||||
PackageId = $pkgName
|
||||
PackageVersion = $pkgVersion
|
||||
# Artifact info is always considered deployable for now becasue it is not
|
||||
# deployed anywhere. Dealing with duplicate tags happens downstream in
|
||||
# CheckArtifactShaAgainstTagsList
|
||||
Deployable = $true
|
||||
ReleaseNotes = $releaseNotes
|
||||
Deployable = $true
|
||||
ReleaseNotes = $releaseNotes
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user