We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Add
1 parent 84d3532 commit 4a7413cCopy full SHA for 4a7413c
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DependabotProxy.cs
@@ -65,9 +65,9 @@ internal void ApplyProxy(ILogger logger, ProcessStartInfo startInfo)
65
66
logger.LogInfo($"Setting up Dependabot proxy at {this.Address}");
67
68
- startInfo.EnvironmentVariables["HTTP_PROXY"] = this.Address;
69
- startInfo.EnvironmentVariables["HTTPS_PROXY"] = this.Address;
70
- startInfo.EnvironmentVariables["SSL_CERT_FILE"] = this.certFile?.FullName;
+ startInfo.EnvironmentVariables.Add("HTTP_PROXY", this.Address);
+ startInfo.EnvironmentVariables.Add("HTTPS_PROXY", this.Address);
+ startInfo.EnvironmentVariables.Add("SSL_CERT_FILE", this.certFile?.FullName);
71
}
72
73
0 commit comments