Changeset 58327 in webkit


Ignore:
Timestamp:
Apr 27, 2010 1:16:01 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-27 Eric Seidel <eric@webkit.org>

Reviewed by David Levin.

prepare-ChangeLog --bug fails on some CYGWIN installs due to missing certs
https://bugs.webkit.org/show_bug.cgi?id=38212

  • Scripts/prepare-ChangeLog:
    • Pass --insecure to curl to work around CYGWIN missing certs.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r58324 r58327  
     12010-04-27  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by David Levin.
     4
     5        prepare-ChangeLog --bug fails on some CYGWIN installs due to missing certs
     6        https://bugs.webkit.org/show_bug.cgi?id=38212
     7
     8        * Scripts/prepare-ChangeLog:
     9         - Pass --insecure to curl to work around CYGWIN missing certs.
     10
    1112010-04-27  Sam Weinig  <sam@webkit.org>
    212
  • trunk/WebKitTools/Scripts/prepare-ChangeLog

    r57084 r58327  
    261261    my $bugXMLURL = "$bugURL&ctype=xml";
    262262    # Perl has no built in XML processing, so we'll fetch and parse with curl and grep
    263     my $descriptionLine = `curl --silent "$bugXMLURL" | grep short_desc`;
     263    # Pass --insecure because some cygwin installs have no certs we don't
     264    # care about validating that bugs.webkit.org is who it says it is here.
     265    my $descriptionLine = `curl --insecure --silent "$bugXMLURL" | grep short_desc`;
    264266    if ($descriptionLine !~ /<short_desc>(.*)<\/short_desc>/) {
    265267        print STDERR "  Bug $bugNumber has no bug description. Maybe you set wrong bug ID?\n";
Note: See TracChangeset for help on using the changeset viewer.