Changeset 69429 in webkit


Ignore:
Timestamp:
Oct 8, 2010 4:10:50 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-10-08 Adam Barth <abarth@webkit.org>

Unreviewed (Eric is on vacation in this change is trivial).

Add a "clean" command to webkit-patch to clean the working directory
https://bugs.webkit.org/show_bug.cgi?id=47436

This command is useful when using SVN because "svn revert" leaves
unversioned files behind.

  • Scripts/webkitpy/tool/commands/download.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r69408 r69429  
     12010-10-08  Adam Barth  <abarth@webkit.org>
     2
     3        Unreviewed (Eric is on vacation in this change is trivial).
     4
     5        Add a "clean" command to webkit-patch to clean the working directory
     6        https://bugs.webkit.org/show_bug.cgi?id=47436
     7
     8        This command is useful when using SVN because "svn revert" leaves
     9        unversioned files behind.
     10
     11        * Scripts/webkitpy/tool/commands/download.py:
     12
    1132010-10-08  Andras Becsi  <abecsi@webkit.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/tool/commands/download.py

    r68496 r69429  
    4444
    4545
     46class Clean(AbstractSequencedCommand):
     47    name = "clean"
     48    help_text = "Clean the working copy"
     49    steps = [
     50        steps.CleanWorkingDirectory,
     51    ]
     52
     53    def _prepare_state(self, options, args, tool):
     54        options.force_clean = True
     55
     56
    4657class Update(AbstractSequencedCommand):
    4758    name = "update"
Note: See TracChangeset for help on using the changeset viewer.