summaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 64fd8820..066c115a 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -27,7 +27,8 @@ cleanup_template: &CLEANUP_TEMPLATE
before_cache_script:
- rm -rf $HOME/.cargo/registry/index
- rm -f ./target/.rustc_info.json
- - find ./target/debug -maxdepth 1 -type f -delete # Delete stray files
+ - find ./target/debug -maxdepth 1 -type f -delete || true # Delete stray files if they exist
+ - find ./target/release -maxdepth 1 -type f -delete || true # Delete stray files
env:
CARGO_INCREMENTAL: 0