Skip to content
Snippets Groups Projects

Rework apk handling and always use apk.static

Merged Caleb Connolly requested to merge caleb/apk-static-and-other-cleanups into master
All threads resolved!
1 file
+ 12
0
Compare changes
  • Side-by-side
  • Inline
+ 12
0
@@ -205,6 +205,18 @@ def run(command: Sequence[PathString], chroot: Chroot, with_progress: bool = Tru
"""
_command = _prepare_cmd(command, chroot)
# Sanity checks. We should avoid accidentally writing to
# /var/cache/apk on the host!
if "add" in command:
if "--no-interactive" not in _command:
raise RuntimeError(
"Encountered an 'apk add' command without --no-interactive! This is a bug."
)
if "--cache-dir" not in _command:
raise RuntimeError(
"Encountered an 'apk add' command without --cache-dir! This is a bug."
)
if with_progress:
_apk_with_progress(_command)
else:
Loading