mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
11 lines
261 B
Text
11 lines
261 B
Text
|
|
#!/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)
|