forked from Mirror/pmbootstrap
9 lines
196 B
Python
Executable file
9 lines
196 B
Python
Executable file
#!/usr/bin/env python3
|
|
# Copyright 2021 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# PYTHON_ARGCOMPLETE_OK
|
|
import sys
|
|
import pmb
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(pmb.main())
|