aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kilmer <eric.d.kilmer@gmail.com>2020-10-29 18:37:46 -0400
committerGitHub <noreply@github.com>2020-10-29 15:37:46 -0700
commit0434ef70ae3ed6fb49a028829fde14170ba6420f (patch)
tree639129f88898b773359a187f900de6558a920d6f
parent1be51cb4579e8f34317a0e53256095219ea85702 (diff)
downloadvcpkg-0434ef70ae3ed6fb49a028829fde14170ba6420f.tar.gz
vcpkg-0434ef70ae3ed6fb49a028829fde14170ba6420f.zip
[vcpkg] Remove hard-coded ApiKey from nuget push (#14202)
-rw-r--r--toolsrc/src/vcpkg/binarycaching.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/toolsrc/src/vcpkg/binarycaching.cpp b/toolsrc/src/vcpkg/binarycaching.cpp
index 4563f575e..5512182c5 100644
--- a/toolsrc/src/vcpkg/binarycaching.cpp
+++ b/toolsrc/src/vcpkg/binarycaching.cpp
@@ -393,8 +393,6 @@ namespace
cmd.path_arg(nuget_exe)
.string_arg("push")
.path_arg(nupkg_path)
- .string_arg("-ApiKey")
- .string_arg("AzureDevOps")
.string_arg("-ForceEnglishOutput")
.string_arg("-Source")
.string_arg(write_src);
@@ -426,8 +424,6 @@ namespace
cmd.path_arg(nuget_exe)
.string_arg("push")
.path_arg(nupkg_path)
- .string_arg("-ApiKey")
- .string_arg("AzureDevOps")
.string_arg("-ForceEnglishOutput")
.string_arg("-ConfigFile")
.path_arg(write_cfg);