diff options
Diffstat (limited to 'ci/before_cache.sh')
| -rwxr-xr-x | ci/before_cache.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ci/before_cache.sh b/ci/before_cache.sh index d7405bab19..7bf66221ae 100755 --- a/ci/before_cache.sh +++ b/ci/before_cache.sh @@ -7,10 +7,7 @@ CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # shellcheck source-path=SCRIPTDIR source "${CI_DIR}/common/suite.sh" -mkdir -p "${HOME}/.cache" - -echo "before_cache.sh: cache size" -du -chd 1 "${HOME}/.cache" | sort -rh | head -20 +mkdir -p "$CACHE_DIR" # Update the third-party dependency cache only if the build was successful. if ended_successfully && [ -d "${DEPS_BUILD_DIR}" ]; then |