Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/vcpkg/binarycaching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,8 @@ namespace
msg::vendor = "NuGet",
msg::url = docs::troubleshoot_binary_cache_url);
}
else if (res.output.find("for example \"-ApiKey AzureDevOps\"") != std::string::npos)
else if (res.output.find("for example \"-ApiKey AzureDevOps\"") != std::string::npos ||
res.output.find("for example \"-ApiKey **api-key-removed**\"") != std::string::npos)
{
auto real_cmd = cmd;
real_cmd.string_arg("-ApiKey").string_arg("AzureDevOps");
Expand Down