Title: [201120] trunk/Websites/perf.webkit.org
Revision
201120
Author
rn...@webkit.org
Date
2016-05-18 17:45:16 -0700 (Wed, 18 May 2016)

Log Message

Unreviewed build fix. Use --date-order so that every child commit appears after its parent.
Otherwise we'll hit a FailedToFindParentCommit error while submitting a commit that appears before its parent.

* tools/sync-commits.py:
(GitRepository._fetch_all_hashes):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (201119 => 201120)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-05-19 00:20:26 UTC (rev 201119)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-05-19 00:45:16 UTC (rev 201120)
@@ -1,5 +1,13 @@
 2016-05-18  Ryosuke Niwa  <rn...@webkit.org>
 
+        Unreviewed build fix. Use --date-order so that every child commit appears after its parent.
+        Otherwise we'll hit a FailedToFindParentCommit error while submitting a commit that appears before its parent.
+
+        * tools/sync-commits.py:
+        (GitRepository._fetch_all_hashes):
+
+2016-05-18  Ryosuke Niwa  <rn...@webkit.org>
+
         Removed the erroneously committed debug code.
 
         * tools/sync-commits.py:

Modified: trunk/Websites/perf.webkit.org/tools/sync-commits.py (201119 => 201120)


--- trunk/Websites/perf.webkit.org/tools/sync-commits.py	2016-05-19 00:20:26 UTC (rev 201119)
+++ trunk/Websites/perf.webkit.org/tools/sync-commits.py	2016-05-19 00:45:16 UTC (rev 201120)
@@ -214,7 +214,7 @@
 
     def _fetch_all_hashes(self):
         self._run_git_command(['pull', self._git_url])
-        lines = self._run_git_command(['log', '--all', '--reverse', '--pretty=%H %ct %ce %P']).split('\n')
+        lines = self._run_git_command(['log', '--all', '--date-order', '--reverse', '--pretty=%H %ct %ce %P']).split('\n')
         self._tokenized_hashes = [line.split() for line in lines]
 
     def _run_git_command(self, args):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to