Changeset 51923 in webkit


Ignore:
Timestamp:
Dec 9, 2009 2:25:35 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-09 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

exception thrown when running apply-patches
https://bugs.webkit.org/show_bug.cgi?id=32344

The update step now takes a port option. Once we finish the Steps
refactoring, we won't have to worry about this kind of bug again.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51903 r51923  
     12009-12-09  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        exception thrown when running apply-patches
     6        https://bugs.webkit.org/show_bug.cgi?id=32344
     7
     8        The update step now takes a port option.  Once we finish the Steps
     9        refactoring, we won't have to worry about this kind of bug again.
     10
     11        * Scripts/modules/commands/download.py:
     12
    1132009-12-09  Adam Barth  <abarth@webkit.org>
    214
  • trunk/WebKitTools/Scripts/modules/commands/download.py

    r51903 r51923  
    3434
    3535from modules.bugzilla import parse_bug_id
    36 from modules.buildsteps import BuildSteps, EnsureBuildersAreGreenStep, CleanWorkingDirectoryStep, UpdateStep, BuildStep, CheckStyleStep, PrepareChangelogStep
     36from modules.buildsteps import CommandOptions, BuildSteps, EnsureBuildersAreGreenStep, CleanWorkingDirectoryStep, UpdateStep, BuildStep, CheckStyleStep, PrepareChangelogStep
    3737from modules.changelogs import ChangeLog
    3838from modules.comments import bug_comment_from_commit_text
     
    9696            make_option("--no-update", action="store_false", dest="update", default=True, help="Don't update the working directory before applying patches"),
    9797            make_option("--local-commit", action="store_true", dest="local_commit", default=False, help="Make a local commit for each applied patch"),
     98            CommandOptions.port,
    9899        ]
    99100
Note: See TracChangeset for help on using the changeset viewer.