helpers: frontend: fix newapkbuild. args.force -> context.force (MR 2388)

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
Caleb Connolly 2024-08-01 03:33:33 +02:00 committed by Oliver Smith
parent 69fa230f3f
commit 7db312c981
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -463,7 +463,7 @@ def newapkbuild(args: PmbArgs) -> None:
# Passthrough: PKGNAME[-PKGVER] | SRCURL
pass_through.append(args.pkgname_pkgver_srcurl)
pmb.build.newapkbuild(args.folder, pass_through, args.force)
pmb.build.newapkbuild(args.folder, pass_through, get_context().force)
def deviceinfo_parse(args: PmbArgs) -> None: