helpers: mount: drop args (MR 2252)

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
Caleb Connolly 2024-05-24 19:58:50 +02:00 committed by Oliver Smith
parent 1371525c2b
commit e547bb7f9c
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
13 changed files with 29 additions and 29 deletions

View file

@ -21,7 +21,7 @@ def init(args: PmbArgs):
for loopdevice in Path("/dev/").glob("loop*"):
if loopdevice.is_dir():
continue
pmb.helpers.mount.bind_file(args, loopdevice, Chroot.native() / loopdevice)
pmb.helpers.mount.bind_file(loopdevice, Chroot.native() / loopdevice)
def mount(args: PmbArgs, img_path: Path):