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