From 2469b151faa152a0f983050ab200dd95c58e262b Mon Sep 17 00:00:00 2001 From: Erick Yondon Date: Tue, 1 Mar 2022 12:31:43 -0800 Subject: [PATCH] Fix syntax --- docs/release-notes/NuGet-6.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/NuGet-6.1.md b/docs/release-notes/NuGet-6.1.md index ae15e9f5c..242741db9 100644 --- a/docs/release-notes/NuGet-6.1.md +++ b/docs/release-notes/NuGet-6.1.md @@ -106,7 +106,7 @@ NuGet distribution vehicles: ### dotnet nuget push -n|--no-symbols or -d|--disable-buffering raises `error: File does not exist ...` exception. - [#11601](https://github.com/NuGet/Home/issues/11601) #### Issue -Previously in order to use `-n|--no-symbols` and `-d|--disable-buffering` options with `dotnet nuget push` command requires passing unnecessary passing of random value after it. Removal of this unnecessary value can break your script by throwing exception with `error: File does not exist ...` even though actual push operation was successful. +Previously in order to use `-n|--no-symbols` and `-d|--disable-buffering` options with `dotnet nuget push` command requires passing of unnecessary random value after it. Removal of this unnecessary value can break your script by throwing exception with `error: File does not exist ...` even though actual push operation was successful. #### Workaround Use `-n|--no-symbols` and `-d|--disable-buffering` options standalone without any additional value parameter.