From 71808faa72fb0f3364317bc9e7f3bbd2b4496ead Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 29 Dec 2019 13:51:35 -0500 Subject: [PATCH] Cache tarpaulin on Travis CI Currently the recommended instructions say to use `cargo install -f`, which always rebuilds tarpaulin even if it's already installed. Removing the -f caches the build if it already exists. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1ca812df..146d817b9 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ matrix: before_cache: | if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then - cargo install cargo-tarpaulin -f + cargo install cargo-tarpaulin fi script: