mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Do not suppress errors from packaging android build.
This commit is contained in:
parent
ac331c6663
commit
eb9e408396
1 changed files with 4 additions and 2 deletions
|
@ -406,8 +406,10 @@ class MachCommands(CommandBase):
|
|||
# Do some additional things if the build succeeded
|
||||
if status == 0:
|
||||
if android and not no_package:
|
||||
Registrar.dispatch("package", context=self.context,
|
||||
release=release, dev=dev, target=target)
|
||||
rv = Registrar.dispatch("package", context=self.context,
|
||||
release=release, dev=dev, target=target)
|
||||
if rv:
|
||||
return rv
|
||||
|
||||
if sys.platform == "win32":
|
||||
servo_exe_dir = path.join(base_path, "debug" if dev else "release")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue