13 lines
269 B
Python
Executable file
13 lines
269 B
Python
Executable file
"""OSBuild Main
|
|
|
|
This specifies the entrypoint of the osbuild module when run as executable. For
|
|
compatibility we will continue to run the CLI.
|
|
"""
|
|
|
|
import sys
|
|
|
|
from osbuild.main_cli import osbuild_cli as main
|
|
|
|
if __name__ == "__main__":
|
|
r = main()
|
|
sys.exit(r)
|