summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2019-01-29 17:48:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 22:27:39 +0000
commit909e75e53b432a2ed933ea06bc6865d3918f444e (patch)
treebeacdebe85890e2211cfc555d7bcda95498c039b /scripts
parent31ed0032ed0fecf37b216dc6a3164182b433943f (diff)
downloadpoky-909e75e53b432a2ed933ea06bc6865d3918f444e.tar.gz
oe-git-proxy: Avoid resolving NO_PROXY against local files
NO_PROXY may contain * elements, and if we are unlucky (or want to match all hosts with *), we will pick up local files rather than doing the match in match_host. Quoting helps here. (From OE-Core rev: 7e216e806ca765152fd874e24785f783a3201284) (From OE-Core rev: 5b5c8ccaba188530ae4b05fd49804aaa74cbb949) Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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 7a43fe6a6e..1800942f36 100755
--- a/scripts/oe-git-proxy
+++ b/scripts/oe-git-proxy
@@ -131,8 +131,8 @@ if [ -z "$ALL_PROXY" ]; then
131fi 131fi
132 132
133# Connect directly to hosts in NO_PROXY 133# Connect directly to hosts in NO_PROXY
134for H in ${NO_PROXY//,/ }; do 134for 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
138done 138done