blob: 388db4f7fd5054ac499d4cd294e8d03b439c1652 [file] [log] [blame]
#!/usr/bin/env python
import sys
try:
from tools.lint import lint
except ImportError:
print("tools.lint not found.")
sys.exit(2)
args = lint.parse_args()
sys.exit(0 if lint.main(**vars(args)) == 0 else 1)