Revision 7d18584275533a5ae66011a8b13411a329ccd5a9 authored by Hiroyuki Ikezoe on 09 June 2016, 10:52:46 UTC, committed by James Graham on 09 June 2016, 12:53:50 UTC
MozReview-Commit-ID: 3QHrpCTpEzM

Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1276490
1 parent 7565bfc
Raw File
lint
#!/usr/bin/env python
import sys

try:
    from tools.lint import lint
except ImportError:
    print("tools.lint not found.  Did you forget to run "
          '"git submodule update --init --recursive"?')
    sys.exit(2)

sys.exit(0 if lint.main() == 0 else 1)
back to top