In the page knowledge/programming/gradle.md you suggest running find ~/.gradle/caches -type f -atime +30 -delete to clear old cache files, but that can lead to inconsistency in the cache (i.e a 3 day old file depending on a 35 day old one).
This actually happened to me and I had to delete the entire cache folder to fix the issue, I suggest changing the command to just wipe the whole cache folder.
In the page knowledge/programming/gradle.md you suggest running
find ~/.gradle/caches -type f -atime +30 -deleteto clear old cache files, but that can lead to inconsistency in the cache (i.e a 3 day old file depending on a 35 day old one).This actually happened to me and I had to delete the entire cache folder to fix the issue, I suggest changing the command to just wipe the whole cache folder.