mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-04 15:41:16 +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":
|
||||
wfd.write("RUN pacman -Syu --noconfirm --needed\\\n")
|
||||
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)):
|
||||
if i < len(deps) - 1:
|
||||
wfd.write("\t%s \\\n" % deps[i])
|
||||
|
Loading…
Reference in New Issue
Block a user