summaryrefslogtreecommitdiffstats
path: root/scripts/oe-git-proxy
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-git-proxy')
-rwxr-xr-xscripts/oe-git-proxy4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-git-proxy b/scripts/oe-git-proxy
index 8499a99a71..10e6560da4 100755
--- a/scripts/oe-git-proxy
+++ b/scripts/oe-git-proxy
@@ -134,8 +134,8 @@ if [ -z "$ALL_PROXY" ]; then
134fi 134fi
135 135
136# Connect directly to hosts in NO_PROXY 136# Connect directly to hosts in NO_PROXY
137for H in "${NO_PROXY//,/ }"; do 137for H in ${NO_PROXY//,/ }; do
138 if match_host $1 "$H"; then 138 if match_host $1 $H; then
139 exec $SOCAT STDIO $METHOD 139 exec $SOCAT STDIO $METHOD
140 fi 140 fi
141done 141done