Revert "Remove entire cache folder, not just contents (#820)"

This reverts commit 2945104d39.
This commit is contained in:
Georgios Konstantopoulos 2022-01-20 15:49:59 +02:00
parent 4864ddab43
commit 141e2f1807
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ impl<Artifacts: ArtifactOutput> Project<Artifacts> {
pub fn cleanup(&self) -> std::result::Result<(), SolcIoError> { pub fn cleanup(&self) -> std::result::Result<(), SolcIoError> {
tracing::trace!("clean up project"); tracing::trace!("clean up project");
if self.cache_path().exists() { if self.cache_path().exists() {
std::fs::remove_dir_all(self.cache_path()) std::fs::remove_file(self.cache_path())
.map_err(|err| SolcIoError::new(err, self.cache_path()))?; .map_err(|err| SolcIoError::new(err, self.cache_path()))?;
tracing::trace!("removed cache file \"{}\"", self.cache_path().display()); tracing::trace!("removed cache file \"{}\"", self.cache_path().display());
} }