Title: [141863] trunk/Tools
Revision
141863
Author
[email protected]
Date
2013-02-05 00:00:22 -0800 (Tue, 05 Feb 2013)

Log Message

EWS bots don't remove untracked files after processing a patch
https://bugs.webkit.org/show_bug.cgi?id=108891

Patch by Alan Cutter <[email protected]> on 2013-02-04
Reviewed by Adam Barth.

Added option to remove untracked files in the bot's repo.

* EWSTools/start-queue.sh:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (141862 => 141863)


--- trunk/Tools/ChangeLog	2013-02-05 07:39:56 UTC (rev 141862)
+++ trunk/Tools/ChangeLog	2013-02-05 08:00:22 UTC (rev 141863)
@@ -1,3 +1,14 @@
+2013-02-04  Alan Cutter  <[email protected]>
+
+        EWS bots don't remove untracked files after processing a patch
+        https://bugs.webkit.org/show_bug.cgi?id=108891
+
+        Reviewed by Adam Barth.
+
+        Added option to remove untracked files in the bot's repo.
+
+        * EWSTools/start-queue.sh:
+
 2013-02-04  Benjamin Poulain  <[email protected]>
 
         Kill suspendAnimation(), resumeAnimation() and numberOfActiveAnimations() from DRT/WTR; use Internals

Modified: trunk/Tools/EWSTools/start-queue.sh (141862 => 141863)


--- trunk/Tools/EWSTools/start-queue.sh	2013-02-05 07:39:56 UTC (rev 141862)
+++ trunk/Tools/EWSTools/start-queue.sh	2013-02-05 08:00:22 UTC (rev 141863)
@@ -50,7 +50,7 @@
 
     # This somewhat quirky sequence of steps seems to clear up all the broken
     # git situations we've gotten ourself into in the past.
-    git clean -f # Remove any left-over layout test results, added files, etc.
+    git clean -f -d # Remove any left-over layout test results, added files, etc.
     git rebase --abort # If we got killed during a git rebase, we need to clean up.
     git fetch origin # Avoid updating the working copy to a stale revision.
     git checkout origin/master -f
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to