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.
1 parent 8635d26 commit 6201397Copy full SHA for 6201397
cmd/client/main.go
@@ -74,8 +74,10 @@ func main() {
74
SNI: customSNI,
75
}
76
77
- if err := settings.SetNTLMProxyCreds(ntlmProxyCreds); err != nil {
78
- log.Fatalf("Embedded ntlm proxy credentials are invalid: %q: %v", ntlmProxyCreds, err)
+ if ntlmProxyCreds != "" {
+ if err := settings.SetNTLMProxyCreds(ntlmProxyCreds); err != nil {
79
+ log.Fatalf("Embedded ntlm proxy credentials are invalid: %q: %v", ntlmProxyCreds, err)
80
+ }
81
82
83
if len(os.Args) == 0 || ignoreInput == "true" {
0 commit comments