Revision c8bb82a6a1495f264e394778c3e930de36c85673 authored by Thomas Nguyen on 08 April 2016, 10:15:29 UTC, committed by James Graham on 08 April 2016, 10:47:04 UTC
MozReview-Commit-ID: 5aT9EhJHmy5

Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1186072
1 parent 72d1661
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