func cleanWindowsEnv()

in main.go [156:162]


func cleanWindowsEnv(proxyEnvVar string) {
	debug.FlushLog()
	if proxyEnvVar != "" {
		os.Unsetenv("HTTP_PROXY")  //nolint:errcheck // unset env
		os.Unsetenv("HTTPS_PROXY") //nolint:errcheck // unset env
	}
}