mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Auto merge of #9129 - frewsxcv:update-wpt-return-code, r=jgraham
Fix incorrect return code for 'update-wpt' mach command `mach update-wpt` should return 1 if it exits in an unclean state <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9129) <!-- Reviewable:end -->
This commit is contained in:
commit
8cecf4de92
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ def update_tests(**kwargs):
|
|||
logger = update.setup_logging(kwargs, {"mach": sys.stdout})
|
||||
|
||||
rv = update.run_update(logger, **kwargs)
|
||||
return 0 if rv is update.exit_unclean else 1
|
||||
return 1 if rv is update.exit_unclean else 0
|
||||
|
||||
|
||||
def set_defaults(kwargs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue