blob: 28434bab3242573575a7bdeb943e4df9790f07c6 [file] [log] [blame]
#!/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)
args = lint.parse_args()
sys.exit(0 if lint.main(**vars(args)) == 0 else 1)