14 lines
369 B
Text
14 lines
369 B
Text
|
|
#!/usr/bin/python3
|
||
|
|
|
||
|
|
"""Convenience wrapper for executing rdc-repos from a git checkout."""
|
||
|
|
|
||
|
|
import os
|
||
|
|
import sys
|
||
|
|
|
||
|
|
# add src subdirectory directory to module import path
|
||
|
|
sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), "src"))
|
||
|
|
|
||
|
|
from rmdepcheck.repos import main # pylint: disable=wrong-import-position
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|