Skip to content
Snippets Groups Projects
Commit b97c93f9 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: print results of find to delete

parent 082d4d3b
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !659. Comments created here will be created in the context of that merge request.
...@@ -125,9 +125,8 @@ RUN --mount=type=cache,target=/var/cache/spack \ ...@@ -125,9 +125,8 @@ RUN --mount=type=cache,target=/var/cache/spack \
## Clear the local source and buildcache before install ## Clear the local source and buildcache before install
RUN --mount=type=cache,target=/var/cache/spack \ RUN --mount=type=cache,target=/var/cache/spack \
find /var/cache/spack/mirror/${SPACK_VERSION}/build_cache/* \ find /var/cache/spack/mirror/${SPACK_VERSION}/ -atime +30 -print \
/var/cache/spack/_source-cache/archives* \ && find /var/cache/spack/_source-cache/archive -atime +30 -print
-atime +30 -print -delete
## Extra post-spack steps: ## Extra post-spack steps:
## - Python packages ## - Python packages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment