commit: 26861c7a06d5ea82e9c6233caec3e6d9fd68be52 Author: Michal Rostecki <vadorovsky <AT> protonmail <DOT> com> AuthorDate: Tue Sep 16 12:14:59 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Oct 8 02:21:22 2025 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=26861c7a
scripts: Always pull the container image That way we make sure that stage3 is up-to-date. Signed-off-by: Michal Rostecki <vadorovsky <AT> protonmail.com> Part-of: https://github.com/gentoo/crossdev/pull/24 Signed-off-by: Sam James <sam <AT> gentoo.org> scripts/container_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/container_test.sh b/scripts/container_test.sh index 4205dbd..d30be3b 100755 --- a/scripts/container_test.sh +++ b/scripts/container_test.sh @@ -86,6 +86,7 @@ while [[ $# -gt 0 ]]; do done "${CONTAINER_ENGINE}" run -d \ + --pull always \ --name "${CONTAINER_NAME}" \ -v "${TOPDIR}:/workspace" \ -w /workspace \
