mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7 lines
102 B
Python
Executable File
7 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)
|