From: Henning Schild Date: Tue, 3 Sep 2019 13:43:49 +0000 (+0200) Subject: oe-git-proxy: NO_PROXY suffix matching without wildcard for match_host X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ffd9ee9c32452c72293e70bd2ec3ae36312dcf1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oe-git-proxy: NO_PROXY suffix matching without wildcard for match_host NO_PROXY can also contain just suffixes that do not start with a "*". We failed to match those so far. Just add an extra "*" to also match those suffixes. If one was there we get "**" which does not hurt. (From OE-Core rev: 12f0cc209aaba48f846c62663e0b9e5efd253d71) Signed-off-by: Henning Schild Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/scripts/oe-git-proxy b/scripts/oe-git-proxy index 9eeef45dcf5..2cb995f43cf 100755 --- a/scripts/oe-git-proxy +++ b/scripts/oe-git-proxy @@ -107,7 +107,7 @@ match_host() { HOST=$1 GLOB=$2 - if [ -z "${HOST%%$GLOB}" ]; then + if [ -z "${HOST%%*$GLOB}" ]; then return 0 fi