rwx/cmd/debootstrap/__init__.py

11 lines
163 B
Python
Raw Normal View History

2024-02-16 20:11:28 +00:00
from ... import cmd
from ... import ps
cmd.need('debootstrap')
def debootstrap(input_mirror: str, output_root: str):
ps.run([
'debootstrap',
])