diff options
-rwxr-xr-x | scripts/oe-git-proxy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-git-proxy b/scripts/oe-git-proxy index 7a43fe6a6e..1800942f36 100755 --- a/scripts/oe-git-proxy +++ b/scripts/oe-git-proxy | |||
@@ -131,8 +131,8 @@ if [ -z "$ALL_PROXY" ]; then | |||
131 | fi | 131 | fi |
132 | 132 | ||
133 | # Connect directly to hosts in NO_PROXY | 133 | # Connect directly to hosts in NO_PROXY |
134 | for H in ${NO_PROXY//,/ }; do | 134 | for H in "${NO_PROXY//,/ }"; do |
135 | if match_host $1 $H; then | 135 | if match_host $1 "$H"; then |
136 | exec $SOCAT STDIO $METHOD | 136 | exec $SOCAT STDIO $METHOD |
137 | fi | 137 | fi |
138 | done | 138 | done |