From a94705c1e9a98b0347e0b4309628b0201dcfcc99 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 6 Dec 2016 14:44:49 -0800 Subject: [PATCH] Forgot the environment variable. --- .../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 b7fada45..dcf6eb70 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("http_proxy"); + String httpProxy = System.getenv("httpProxy"); try { String host = httpProxy == null || httpProxy.indexOf(':') == -1 ? "localhost"