[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH OSSTEST] TestSupport: Don't use git proxy for non-git:// urls.
After this I was stymied by ssh host keys and other roadblocks and just pushed the branch to my xenbits tree but I think this is still correct as far as it goes. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- Osstest/TestSupport.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 236083e..45e5ecb 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -988,7 +988,9 @@ sub file_simple_write_contents ($$) { sub git_massage_url ($) { my ($url) = @_; - if ($c{GitCacheProxy}) { $url = $c{GitCacheProxy}.$url; } + if ($url =~ m,^git://, && $c{GitCacheProxy}) { + $url = $c{GitCacheProxy}.$url; + } return $url; } -- 1.8.5.2 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |