Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 1072026: suppress 'no version information available' r=catlee
Browse files Browse the repository at this point in the history
--HG--
branch : mozilla-b2g37_v2_2
extra : transplant_source : %E1%8FCQ%EBY%80F%5E%06LT%80%0A%89.%F8%C7.%D4
  • Loading branch information
carocad committed Mar 17, 2015
1 parent 053edf1 commit 0a89422
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mozharness/mozilla/building/buildb2gbase.py
Expand Up @@ -24,7 +24,7 @@
import json

from mozharness.base.errors import MakefileErrorList
from mozharness.base.log import WARNING, ERROR
from mozharness.base.log import WARNING, ERROR, DEBUG
from mozharness.base.script import BaseScript
from mozharness.base.transfer import TransferMixin
from mozharness.base.vcs.vcsbase import VCSMixin
Expand All @@ -39,6 +39,7 @@
# Let's turn those into WARNINGS instead
B2GMakefileErrorList = MakefileErrorList + [
{'substr': r'''NS_ERROR_FILE_ALREADY_EXISTS: Component returned failure code''', 'level': ERROR},
{'substr': r'''no version information available''', 'level': DEBUG},
]
B2GMakefileErrorList.insert(0, {'substr': r'/bin/bash: java: command not found', 'level': WARNING})

Expand Down

0 comments on commit 0a89422

Please sign in to comment.