mirror of
https://github.com/BigfootACA/arch-image-builder.git
synced 2024-11-11 05:17:53 +08:00
9 lines
176 B
Python
Executable File
9 lines
176 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
|
|
if __name__ == '__main__':
|
|
sys.path.insert(0, os.path.realpath(os.path.dirname(__file__)))
|
|
from builder.main import main
|
|
main()
|