diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-19 20:04:06 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2022-02-19 20:36:29 -0500 |
commit | 0adbe58bb242e945e4684bcadb40cbb293bff59e (patch) | |
tree | f047c25d8dcea9fb072ea26e4b085376af5cc16b | |
parent | 0c4c384ed166d4b59149dded959c3ce3b2b09f3e (diff) | |
download | rneovim-0adbe58bb242e945e4684bcadb40cbb293bff59e.tar.gz rneovim-0adbe58bb242e945e4684bcadb40cbb293bff59e.tar.bz2 rneovim-0adbe58bb242e945e4684bcadb40cbb293bff59e.zip |
ci: ensure ~/.cache exists
-rwxr-xr-x | ci/before_cache.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/before_cache.sh b/ci/before_cache.sh index c86109168e..a25221e066 100755 --- a/ci/before_cache.sh +++ b/ci/before_cache.sh @@ -7,6 +7,8 @@ CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "${CI_DIR}/common/build.sh" 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 |