build-image: fix space in path
Some checks failed
/ build (push) Failing after 33s

This commit is contained in:
thislight 2024-11-28 19:56:16 +08:00
parent 4df05c7457
commit 9c1de9ae45
No known key found for this signature in database
GPG key ID: FCFE5192241CCD4E

View file

@ -11,7 +11,7 @@ await $`buildah manifest create ${tag}`;
for (const arch of arches) {
await $`buildah build --arch ${arch} \
--pid=host --ipc=host --network=host --userns=host \
--uts=host ${pathToDnfCache ? `-v /var/cache/dnf:/var/cache/dnf` : ""} \
--uts=host ${pathToDnfCache ? `--volume /var/cache/dnf:/var/cache/dnf` : ""} \
--manifest code.lightstands.xyz/standcoded/${tag} \
--volume ${sharedDir}:/imgbuild:z ${dirName}`;
}