Fix releasing manual script (#1363)

This commit is contained in:
Cijo Thomas 2020-10-16 11:24:09 -07:00 committed by GitHub
parent d2f7629670
commit 43b43be127
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ Released 2020-Oct-16" | Set-Content -Path $changelog.FullName
```powershell
.\nuget.exe setApiKey <actual api key>
get-childitem | where {$_.extension -eq
get-childitem -Recurse | where {$_.extension -eq
".nupkg"} | foreach ($_) {.\nuget.exe push $_.fullname -Source
https://api.nuget.org/v3/index.json}
```