Changeset 57432 in webkit


Ignore:
Timestamp:
Apr 10, 2010 6:25:59 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Eric Seidel.

Move global queue log to the logs directory so it survives git clean -f
https://bugs.webkit.org/show_bug.cgi?id=37395

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57430 r57432  
     12010-04-10  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Move global queue log to the logs directory so it survives git clean -f
     6        https://bugs.webkit.org/show_bug.cgi?id=37395
     7
     8        * Scripts/webkitpy/tool/commands/queues.py:
     9
    1102010-04-10  Adam Barth  <abarth@webkit.org>
    211
  • trunk/WebKitTools/Scripts/webkitpy/tool/commands/queues.py

    r57424 r57432  
    7676        return self.tool.executive.run_and_throw_if_fail(webkit_patch_args)
    7777
     78    def _log_directory(self):
     79        return "%s-logs"
     80
    7881    # QueueEngineDelegate methods
    7982
    8083    def queue_log_path(self):
    81         return "%s.log" % self.name
     84        return os.path.join(self._log_directory(), "%s.log" % self.name)
    8285
    8386    def work_item_log_path(self, work_item):
     
    139142
    140143    def work_item_log_path(self, patch):
    141         return os.path.join("%s-logs" % self.name, "%s.log" % patch.bug_id())
     144        return os.path.join(self._log_directory(), "%s.log" % patch.bug_id())
    142145
    143146    def log_progress(self, patch_ids):
Note: See TracChangeset for help on using the changeset viewer.