From 1dda43eef45a60460ecc842e5419b07083d15f30 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 10 Jan 2024 21:22:35 +0100 Subject: [PATCH] Zgrompf --- lib/tests.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/tests.sh b/lib/tests.sh index 3479cd6..4fd0de5 100644 --- a/lib/tests.sh +++ b/lib/tests.sh @@ -11,7 +11,6 @@ _PREINSTALL_APT_DEPS() local apt_deps=$(python3 -c "import toml, sys; t = toml.loads(sys.stdin.read()); p = t['resources'].get('apt', {}).get('packages', ''); print(p.replace(',', ' ')) if isinstance(p, str) else print(' '.join(p));" < $package_path/manifest.toml) log_small_title "Preinstalling apt dependencies before creating the initial snapshot..." - RUN_INSIDE_LXC apt install $apt_deps || true apt="LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get --assume-yes --quiet -o=Acquire::Retries=3 -o=Dpkg::Use-Pty=0" # Execute the command given in argument in the container and log its results.