⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 106708 in webkit


Ignore:
Timestamp:
Feb 3, 2012, 4:29:47 PM (15 years ago)
Author:
Lucas Forschler
Message:

update-webkit-support-libraries is broken with the change from http to https on developer.apple.com
https://bugs.webkit.org/show_bug.cgi?id=77785

Fix the build bots.

Pass the -k and --sslv3 keys to make curl work with https on https://developer.apple.com

  • Scripts/update-webkit-support-libs:

(downloadExpectedVersionNumber):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r106703 r106708  
     12012-02-03  Lucas Forschler  <lforschler@apple.com>
     2
     3        update-webkit-support-libraries is broken with the change from http to https on developer.apple.com
     4        https://bugs.webkit.org/show_bug.cgi?id=77785
     5
     6        Fix the build bots.
     7       
     8        Pass the -k and --sslv3 keys to make curl work with https on https://developer.apple.com
     9
     10        * Scripts/update-webkit-support-libs:
     11        (downloadExpectedVersionNumber):
     12
    1132012-02-03  Lucas Forschler  <lforschler@apple.com>
    214
  • trunk/Tools/Scripts/update-webkit-support-libs

    r75781 r106708  
    115115sub downloadExpectedVersionNumber
    116116{
    117     chomp(my $expectedVersion = `curl -s $versionFileURL`);
     117    chomp(my $expectedVersion = `curl -s --sslv3 -k $versionFileURL`);
    118118    return WEXITSTATUS($?) ? NOTAVERSION : $expectedVersion;
    119119}
Note: See TracChangeset for help on using the changeset viewer.