Title: [282715] trunk/Tools
Revision
282715
Author
jbed...@apple.com
Date
2021-09-17 17:28:39 -0700 (Fri, 17 Sep 2021)

Log Message

[git-webkit] Reset author time when editing commits (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=230224
<rdar://problem/83065417>

Unreviewed follow-up fix.


* Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py:
(Git.pull): We can't update SVN if the HEAD commit does not have a revision.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (282714 => 282715)


--- trunk/Tools/ChangeLog	2021-09-18 00:22:35 UTC (rev 282714)
+++ trunk/Tools/ChangeLog	2021-09-18 00:28:39 UTC (rev 282715)
@@ -1,5 +1,16 @@
 2021-09-17  Jonathan Bedard  <jbed...@apple.com>
 
+        [git-webkit] Reset author time when editing commits (Follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=230224
+        <rdar://problem/83065417>
+
+        Unreviewed follow-up fix.
+
+        * Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py:
+        (Git.pull): We can't update SVN if the HEAD commit does not have a revision.
+
+2021-09-17  Jonathan Bedard  <jbed...@apple.com>
+
         [webkitscmpy] Refactor PR branch management
         https://bugs.webkit.org/show_bug.cgi?id=230432
         <rdar://problem/83258413>

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py (282714 => 282715)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py	2021-09-18 00:22:35 UTC (rev 282714)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py	2021-09-18 00:28:39 UTC (rev 282715)
@@ -795,7 +795,7 @@
                     ), 'HEAD...{}'.format('{}/{}'.format(remote, branch)),
                 ], cwd=self.root_path, env={'FILTER_BRANCH_SQUELCH_WARNING': '1'}).returncode
 
-        if not code and self.is_svn:
+        if not code and self.is_svn and commit.revision:
             return run([
                 self.executable(), 'svn', 'fetch', '--log-window-size=5000', '-r', '{}:HEAD'.format(commit.revision),
             ], cwd=self.root_path).returncode
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to