Title: [279482] trunk/Tools
Revision
279482
Author
jbed...@apple.com
Date
2021-07-01 13:46:56 -0700 (Thu, 01 Jul 2021)

Log Message

[clean-webkit] Exclude autoinstalled directory
https://bugs.webkit.org/show_bug.cgi?id=227588
<rdar://problem/80033943>

Reviewed by Alexey Proskuryakov.

* Scripts/webkitpy/common/checkout/scm/scm.py:
(SCM.discard_untracked_files): Never discard the autoinstalled directory.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (279481 => 279482)


--- trunk/Tools/ChangeLog	2021-07-01 20:28:32 UTC (rev 279481)
+++ trunk/Tools/ChangeLog	2021-07-01 20:46:56 UTC (rev 279482)
@@ -1,3 +1,14 @@
+2021-07-01  Jonathan Bedard  <jbed...@apple.com>
+
+        [clean-webkit] Exclude autoinstalled directory
+        https://bugs.webkit.org/show_bug.cgi?id=227588
+        <rdar://problem/80033943>
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitpy/common/checkout/scm/scm.py:
+        (SCM.discard_untracked_files): Never discard the autoinstalled directory.
+
 2021-07-01  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Selecting or dragging images that contain recognizable text is difficult in Mail compose

Modified: trunk/Tools/Scripts/webkitpy/common/checkout/scm/scm.py (279481 => 279482)


--- trunk/Tools/Scripts/webkitpy/common/checkout/scm/scm.py	2021-07-01 20:28:32 UTC (rev 279481)
+++ trunk/Tools/Scripts/webkitpy/common/checkout/scm/scm.py	2021-07-01 20:46:56 UTC (rev 279482)
@@ -219,6 +219,8 @@
             if self._filesystem.isdir(filename):
                 if keep_webkitbuild_directory and filename == "WebKitBuild":
                     continue
+                if filename == 'Tools/Scripts/libraries/autoinstalled':
+                    continue
                 self._filesystem.rmtree(filename)
             else:
                 self._filesystem.remove(filename)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to