mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-27 15:55:16 +00:00
Bug 1036093 - ignore mach exceptions when printing binary paths; r=gps
This commit is contained in:
parent
54b9ed8751
commit
9bb3b5a886
@ -423,6 +423,7 @@ class Build(MachCommandBase):
|
||||
# Only for full builds because incremental builders likely don't
|
||||
# need to be burdened with this.
|
||||
if not what:
|
||||
try:
|
||||
# Fennec doesn't have useful output from just building. We should
|
||||
# arguably make the build action useful for Fennec. Another day...
|
||||
if self.substs['MOZ_BUILD_APP'] != 'mobile/android':
|
||||
@ -431,6 +432,10 @@ class Build(MachCommandBase):
|
||||
if app in ('browser', 'mobile/android'):
|
||||
print('For more information on what to do now, see '
|
||||
'https://developer.mozilla.org/docs/Developer_Guide/So_You_Just_Built_Firefox')
|
||||
except Exception:
|
||||
# Ignore Exceptions in case we can't find config.status (such
|
||||
# as when doing OSX Universal builds)
|
||||
pass
|
||||
|
||||
return status
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user