Changeset 195843 in webkit


Ignore:
Timestamp:
Jan 29, 2016 3:01:01 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

update-webkit-dependency fails to fetch updates through firewall on Windows
https://bugs.webkit.org/show_bug.cgi?id=153619

Patch by Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au> on 2016-01-29
Reviewed by Myles C. Maxfield.

On Windows, when a firewall is present we need to read proxy settings
from environment variables.

This patch relies on the following environment variables being set:
HTTP_PROXY
HTTPS_PROXY

  • Scripts/update-webkit-dependency:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r195795 r195843  
     12016-01-29  Nikos Andronikos  <nikos.andronikos-webkit@cisra.canon.com.au>
     2
     3        update-webkit-dependency fails to fetch updates through firewall on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=153619
     5
     6        Reviewed by Myles C. Maxfield.
     7
     8        On Windows, when a firewall is present we need to read proxy settings
     9        from environment variables.
     10
     11        This patch relies on the following environment variables being set:
     12        HTTP_PROXY
     13        HTTPS_PROXY
     14
     15        * Scripts/update-webkit-dependency:
     16
    1172016-01-28  Dan Bernstein  <mitz@apple.com>
    218
  • trunk/Tools/Scripts/update-webkit-dependency

    r186117 r195843  
    7777my $tmpAbsDir = File::Spec->rel2abs($tmpRelativeDir);
    7878my $ua = LWP::UserAgent->new();
     79$ua->env_proxy;
    7980
    8081print "Checking Last-Modified date of $zipFile...\n";
Note: See TracChangeset for help on using the changeset viewer.