Double cache size for stable-perf

This commit is contained in:
Michael Vines 2018-12-16 22:31:53 -08:00
parent 9a5195e79e
commit aef84320e0
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export PS4="++"
if [[ -d $d ]]; then
du -hs "$d"
read -r cacheSizeInGB _ < <(du -s --block-size=1000000000 "$d")
if [[ $cacheSizeInGB -gt 5 ]]; then
if [[ $cacheSizeInGB -gt 10 ]]; then
echo "$d has gotten too large, removing it"
rm -rf "$d"
fi