mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-03-06 10:30:42 +00:00
12 lines
261 B
Python
Executable File
12 lines
261 B
Python
Executable File
#!/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)
|