Skip to content
Snippets Groups Projects
Unverified Commit c4a92c37 authored by Caleb Connolly's avatar Caleb Connolly :recycle:
Browse files

chroot: apk_static: remove dead run() function (MR 2463)


Since all apk invocations withing pmbootstrap now use apk.static by
default, apk_static.run() isn't called anymore, so let's remove it.

Signed-off-by: default avatarCaleb Connolly <caleb@postmarketos.org>
parent 42158637
No related branches found
No related tags found
1 merge request!2463Rework apk handling and always use apk.static
......@@ -177,14 +177,3 @@ def init() -> None:
apk_name = f"apk-tools-static-{version}.apk"
apk_static = download(apk_name)
extract(version, apk_static)
def run(parameters, with_progress=True):
# --no-interactive is a parameter to `add`, so it must be appended or apk
# gets confused
if "add" in parameters:
parameters += ["--no-interactive"]
if get_context().offline:
parameters = ["--no-network"] + parameters
pmb.helpers.apk.run(parameters, with_progress=with_progress)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment