mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01: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
|
# Do some additional things if the build succeeded
|
||||||
if status == 0:
|
if status == 0:
|
||||||
if android and not no_package:
|
if android and not no_package:
|
||||||
Registrar.dispatch("package", context=self.context,
|
rv = Registrar.dispatch("package", context=self.context,
|
||||||
release=release, dev=dev, target=target)
|
release=release, dev=dev, target=target)
|
||||||
|
if rv:
|
||||||
|
return rv
|
||||||
|
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
servo_exe_dir = path.join(base_path, "debug" if dev else "release")
|
servo_exe_dir = path.join(base_path, "debug" if dev else "release")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue