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

Changeset 280602 in webkit


Ignore:
Timestamp:
Aug 3, 2021, 10:49:05 AM (5 years ago)
Author:
Jonathan Bedard
Message:

[check-github-mirror-integrity] Handle slow Svn query
https://bugs.webkit.org/show_bug.cgi?id=228741

Reviewed by Aakash Jain.

  • Scripts/check-github-mirror-integrity: Pull commit from GitHub before Subversion.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r280590 r280602  
     12021-08-03  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [check-github-mirror-integrity] Handle slow Svn query
     4        https://bugs.webkit.org/show_bug.cgi?id=228741
     5
     6        Reviewed by Aakash Jain.
     7
     8        * Scripts/check-github-mirror-integrity: Pull commit from GitHub before Subversion.
     9
    1102021-08-03  Philippe Normand  <pnormand@igalia.com>
    211
  • trunk/Tools/Scripts/check-github-mirror-integrity

    r280399 r280602  
    3131
    3232def main():
    33     repository = remote.Svn('https://svn.webkit.org/repository/webkit')
    3433    mirror = remote.GitHub('https://github.com/WebKit/WebKit')
     34    repository = remote.Svn('https://svn.webkit.org/repository/webkit')   
    3535
     36    mirror_tip = mirror.commit(branch='main')
    3637    canonical_tip = repository.commit(branch='trunk')
    37     mirror_tip = mirror.commit(branch='main')
    3838
    3939    if mirror_tip.identifier == canonical_tip.identifier:
Note: See TracChangeset for help on using the changeset viewer.