alpine: No generar .apk-new
This commit is contained in:
parent
e618e3cb00
commit
0299e7a08b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue