mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
6 lines
102 B
Python
Executable file
6 lines
102 B
Python
Executable file
#!/usr/bin/env python
|
|
import sys
|
|
|
|
from tools.lint import lint
|
|
|
|
sys.exit(0 if lint.main() == 0 else 1)
|