From 0299e7a08b200944d62672249ee9b63dd18c6250 Mon Sep 17 00:00:00 2001 From: Nulo Date: Fri, 17 Jun 2022 21:14:26 -0300 Subject: [PATCH] alpine: No generar .apk-new --- alpine.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine.lua b/alpine.lua index 4f66005..7bdc11c 100644 --- a/alpine.lua +++ b/alpine.lua @@ -101,9 +101,9 @@ function alpine.make_world(rootfs_path, packages) local status = os.execute("doas apk update --no-cache --root "..rootfs_path) if not (status == 0) then return status end - local status = os.execute("doas apk upgrade --no-cache --root "..rootfs_path) + local status = os.execute("doas apk upgrade --clean-protected --no-cache --root "..rootfs_path) if not (status == 0) then return status end - local status = os.execute("doas apk add --no-cache --root "..rootfs_path) + local status = os.execute("doas apk add --clean-protected --no-cache --root "..rootfs_path) if not (status == 0) then return status end end