10 lines
163 B
Python
10 lines
163 B
Python
from ... import cmd
|
|
from ... import ps
|
|
|
|
cmd.need('debootstrap')
|
|
|
|
|
|
def debootstrap(input_mirror: str, output_root: str):
|
|
ps.run([
|
|
'debootstrap',
|
|
])
|