summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/win-setup.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/win-setup.sh b/tools/win-setup.sh
index af241da2f0..788960af2f 100755
--- a/tools/win-setup.sh
+++ b/tools/win-setup.sh
@@ -60,8 +60,11 @@ find_proxy() {
# Strip out newlines so that doesn't happen.
#
proxy_enabled=`regtool get /HKCU/Software/Microsoft/Windows/CurrentVersion/Internet\ Settings/ProxyEnable 2>/dev/null | tr -d '\012'`
-echo "proxy_enabled is:"
+if [ -n "$proxy_enabled ] ; then
+echo "proxy_enabled is $proxy_enabled"
+echo "In raw bytes, that's:"
echo -n "$proxy_enabled" | od -bc
+fi
if [ -n "$proxy_enabled" -a "$proxy_enabled" -ne 0 ] ; then
export http_proxy=`regtool get /HKCU/Software/Microsoft/Windows/CurrentVersion/Internet\ Settings/ProxyServer 2>/dev/null`
echo "Using Internet Explorer proxy settings."