pmbootstrap/pmbootstrap.py

13 lines
376 B
Python
Raw Normal View History

2017-05-26 20:08:45 +00:00
#!/usr/bin/env python3
# -*- encoding: UTF-8 -*-
2023-01-22 18:11:10 +00:00
# Copyright 2023 Oliver Smith
# SPDX-License-Identifier: GPL-3.0-or-later
2018-08-27 21:35:05 +00:00
# PYTHON_ARGCOMPLETE_OK
2017-05-26 20:08:45 +00:00
import sys
import pmb
2017-05-26 20:08:45 +00:00
# A convenience wrapper for running pmbootstrap from the git repository. This
# script is not part of the python packaging, so don't add more logic here!
2017-05-26 20:08:45 +00:00
if __name__ == "__main__":
sys.exit(pmb.main())