add bin wrapper for local dev

This commit is contained in:
Jörg Thalheim 2023-09-08 11:06:04 +02:00
parent aa752f6ded
commit 44b8e7bf5d

13
bin/nix-ci-build Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
import os
import sys
sys.path.insert(
0, os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
)
from nix_ci_build import main # NOQA
if __name__ == "__main__":
main()