From e2f210823ebd532206377e95d56f816efa714b6a Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Wed, 7 Dec 2016 13:26:01 -0800 Subject: [PATCH] Restore the proxy name to proxy_host. --- .../wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java b/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java index dcf6eb70..b7fada45 100644 --- a/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java +++ b/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java @@ -433,7 +433,7 @@ public class Main { } private Proxy getProxy() { - String httpProxy = System.getenv("httpProxy"); + String httpProxy = System.getenv("http_proxy"); try { String host = httpProxy == null || httpProxy.indexOf(':') == -1 ? "localhost"