diff options
author | Eli Schwartz <eschwartz@gentoo.org> | 2024-09-13 12:46:49 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@gentoo.org> | 2024-09-13 12:46:49 -0400 |
commit | f0d3daff9691933f6f41a14ee838c7914ecab2cb (patch) | |
tree | 8921c6571a32f927abaf2f94f32dcf96a05fdf75 | |
parent | add a variant build that doesn't build wayland (diff) | |
download | binhost-f0d3daff9691933f6f41a14ee838c7914ecab2cb.tar.gz binhost-f0d3daff9691933f6f41a14ee838c7914ecab2cb.tar.bz2 binhost-f0d3daff9691933f6f41a14ee838c7914ecab2cb.zip |
ephemeral builds: make PKGDIR actually bind to the right place...
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
-rwxr-xr-x | builders/milou/binhost-update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builders/milou/binhost-update b/builders/milou/binhost-update index 2688a56..e64cd1e 100755 --- a/builders/milou/binhost-update +++ b/builders/milou/binhost-update @@ -134,7 +134,7 @@ for n in ${NSPAWN_NAMES} ; do for variant in ${machinedir}/${builder}/variants/*; do [[ -d ${variant} ]] || break echo "Variant: ${variant}" &>> ${TMPFILE} - "${nspawn_command[@]}" --ephemeral --bind ${machinedir}/var/cache/binpkgs -M ${n} /root/bin/run-update ${variant##*/} &>> ${TMPFILE} + "${nspawn_command[@]}" --ephemeral --bind ${machinedir}/var/cache/binpkgs:/var/cache/binpkgs -M ${n} /root/bin/run-update ${variant##*/} &>> ${TMPFILE} let "anyfail+=$?" done fi |