Fix assignment of object values (#631)

This commit is contained in:
Rick Winter 2020-09-09 19:51:38 -07:00 committed by GitHub
parent 6b1043fc3f
commit 0470ff8142
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}
}