Skip to content

Commit

Permalink
Add --verbose to build-cef command
Browse files Browse the repository at this point in the history
  • Loading branch information
metajack committed Oct 2, 2014
1 parent 643a6d0 commit f93dd44
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python/servo/build_commands.py
Expand Up @@ -58,13 +58,18 @@ def build(self, target, release=False, jobs=None, verbose=False):
@CommandArgument('--jobs', '-j',
default=None,
help='Number of jobs to run in parallel')
def build_cef(self, jobs=None):
@CommandArgument('--verbose', '-v',
action='store_true',
help='Print verbose output')
def build_cef(self, jobs=None, verbose=False):
self.ensure_bootstrapped()

ret = None
opts = []
if jobs is not None:
opts += ["-j", jobs]
if verbose:
opts += ["-v"]

build_start = time()
with cd(path.join("ports", "cef")):
Expand Down

5 comments on commit f93dd44

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from zwarich
at metajack@f93dd44

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging metajack/servo/build-cef-verbose = f93dd44 into auto

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

metajack/servo/build-cef-verbose = f93dd44 merged ok, testing candidate = 76d1d78

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 76d1d78

Please sign in to comment.