mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-08 19:56:57 +00:00
trivial: try again to fix void docker creation
This commit is contained in:
parent
143efb9d88
commit
89e975490e
@ -64,7 +64,9 @@ with open("Dockerfile", "w") as wfd:
|
|||||||
elif OS == "arch":
|
elif OS == "arch":
|
||||||
wfd.write("RUN pacman -Syu --noconfirm --needed\\\n")
|
wfd.write("RUN pacman -Syu --noconfirm --needed\\\n")
|
||||||
elif OS == "void":
|
elif OS == "void":
|
||||||
wfd.write("RUN xbps-install -Suy xbps \\\n")
|
wfd.write(
|
||||||
|
"RUN xbps-install -Suy xbps && xbps-install -uy && xbps-install -y \\\n"
|
||||||
|
)
|
||||||
for i in range(0, len(deps)):
|
for i in range(0, len(deps)):
|
||||||
if i < len(deps) - 1:
|
if i < len(deps) - 1:
|
||||||
wfd.write("\t%s \\\n" % deps[i])
|
wfd.write("\t%s \\\n" % deps[i])
|
||||||
|
Loading…
Reference in New Issue
Block a user