Chromium Code Reviews| Index: native_client_sdk/src/build_tools/build_updater.py |
| diff --git a/native_client_sdk/src/build_tools/build_updater.py b/native_client_sdk/src/build_tools/build_updater.py |
| index 2987e6477bfe27f940d846a8be59dea4c3b893ab..219e49a37874886baab95584699f5023395045fd 100755 |
| --- a/native_client_sdk/src/build_tools/build_updater.py |
| +++ b/native_client_sdk/src/build_tools/build_updater.py |
| @@ -142,8 +142,6 @@ def BuildUpdater(out_dir, revision_number=None): |
| out_dir: The output directory. |
| revision_number: The revision number of this updater, as an integer. Or |
| None, to use the current Chrome revision.""" |
| - buildbot_common.BuildStep('Create Updater') |
|
Sam Clegg
2014/09/11 19:13:11
We don't want a build step for this?
binji
2014/09/11 19:17:14
Not in this script, it already has a build step wh
|
| - |
| out_dir = os.path.abspath(out_dir) |
| # Build SDK directory |
| @@ -181,8 +179,11 @@ def main(args): |
| dest='out_dir', default=os.path.join(SRC_DIR, 'out')) |
| parser.add_option('-r', '--revision', help='revision number of this updater', |
| dest='revision', default=None) |
| + parser.add_option('-v', '--verbose', help='verbose output') |
| options, args = parser.parse_args(args[1:]) |
| + buildbot_common.verbose = options.verbose |
| + |
| if options.revision: |
| options.revision = int(options.revision) |
| BuildUpdater(options.out_dir, options.revision) |