Skip to content

Commit 27d955c

Browse files
committed
hack: Remove everything in /tmp
Somehow, something else is leaking into `/tmp` at least in the GHA runs...remove it all. Signed-off-by: Colin Walters <[email protected]>
1 parent 1c239e7 commit 27d955c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN /tmp/provision-derived.sh "$variant" && rm -f /tmp/*.sh
2525
COPY hack/install-test-configs/* /usr/lib/bootc/install/
2626
# Inject our built code
2727
COPY --from=build /out/bootc.tar.zst /tmp
28-
RUN tar -C / --zstd -xvf /tmp/bootc.tar.zst && rm -vf /tmp/*
28+
RUN tar -C / --zstd -xvf /tmp/bootc.tar.zst && rm -vrf /tmp/*
2929
# Also copy over arbitrary bits from the target root
3030
COPY --from=build /build/target/dev-rootfs/ /
3131
# Test our own linting

0 commit comments

Comments
 (0)