Skip to content

Commit e8c85a1

Browse files
author
Andrew
authored
Merged PR 20274: Fix Generate checksum file for packages build failure - v7.1.7 (PowerShell#17219)
Fix Generate checksum file for packages build failure
1 parent 41062a5 commit e8c85a1

File tree

1 file changed

+2
-2
lines changed
  • tools/releaseBuild/azureDevOps/templates

1 file changed

+2
-2
lines changed

tools/releaseBuild/azureDevOps/templates/nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
$packagePathList = Get-ChildItem $packagePath -Recurse | Select-Object -ExpandProperty FullName | Out-String
206206
Write-Verbose -Verbose $packagePathList
207207
208-
$checksums = Get-ChildItem -Path $packagePath |
208+
$checksums = Get-ChildItem -Path $packagePath -Exclude "SHA512SUMS" |
209209
ForEach-Object {
210210
Write-Verbose -Verbose "Generating checksum file for $($_.FullName)"
211211
$packageName = $_.Name
@@ -234,7 +234,7 @@ jobs:
234234
$packagePathList = Get-ChildItem $packagePath -Recurse | Select-Object -ExpandProperty FullName | Out-String
235235
Write-Verbose -Verbose $packagePathList
236236
237-
$checksums = Get-ChildItem -Path $packagePath |
237+
$checksums = Get-ChildItem -Path $packagePath -Exclude "SHA512SUMS" |
238238
ForEach-Object {
239239
Write-Verbose -Verbose "Generating checksum file for $($_.FullName)"
240240
$packageName = $_.Name

0 commit comments

Comments
 (0)