From 37a3757d56ec849481e130a2dacfb928a7a8dace Mon Sep 17 00:00:00 2001 From: 0ri0nexe Date: Wed, 9 Jul 2025 16:34:53 +0200 Subject: [PATCH 1/3] chore:fixing alert --- crates/turborepo-lib/src/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/turborepo-lib/src/cli/mod.rs b/crates/turborepo-lib/src/cli/mod.rs index 81339812a1059..0bbf954493518 100644 --- a/crates/turborepo-lib/src/cli/mod.rs +++ b/crates/turborepo-lib/src/cli/mod.rs @@ -399,7 +399,7 @@ impl Args { if run_args.no_cache { warn!( "--no-cache is deprecated and will be removed in a future major version. Use \ - --cache=local:r,remote:r" + --cache=local:,remote:" ); } if run_args.remote_only.is_some() { From 6ce5ce807a2b94fcb6a3e2149cc4251b5c646c6e Mon Sep 17 00:00:00 2001 From: 0ri0nexe Date: Wed, 9 Jul 2025 17:16:17 +0200 Subject: [PATCH 2/3] updated doc too --- docs/site/content/docs/crafting-your-repository/caching.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/site/content/docs/crafting-your-repository/caching.mdx b/docs/site/content/docs/crafting-your-repository/caching.mdx index 22fd696223c97..d9691e45c3d5f 100644 --- a/docs/site/content/docs/crafting-your-repository/caching.mdx +++ b/docs/site/content/docs/crafting-your-repository/caching.mdx @@ -204,7 +204,7 @@ Turborepo has a [`--summarize` flag](/docs/reference/run#--summarize) that can b ### Turning off caching -Sometimes, you may not want to write the output of tasks to the cache. This can be set permanently for a task using [`"cache": false`](/docs/reference/configuration#cache) or for a whole run using [ the `--no-cache` flag](/docs/reference/run#--no-cache). +Sometimes, you may not want to write the output of tasks to the cache. This can be set permanently for a task using [`"cache": false`](/docs/reference/configuration#cache) or for a whole run using [ the `--cache ` flag](/docs/reference/run#--no-cache). ### Overwriting a cache From eac5c43effb8ddcc8c22bd0db1ddf671ce09a989 Mon Sep 17 00:00:00 2001 From: Orionexe <87997348+0ri0nexe@users.noreply.github.com> Date: Thu, 10 Jul 2025 16:56:17 +0200 Subject: [PATCH 3/3] Update mod.rs unfixed --no-cache comment --- crates/turborepo-lib/src/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/turborepo-lib/src/cli/mod.rs b/crates/turborepo-lib/src/cli/mod.rs index 0bbf954493518..81339812a1059 100644 --- a/crates/turborepo-lib/src/cli/mod.rs +++ b/crates/turborepo-lib/src/cli/mod.rs @@ -399,7 +399,7 @@ impl Args { if run_args.no_cache { warn!( "--no-cache is deprecated and will be removed in a future major version. Use \ - --cache=local:,remote:" + --cache=local:r,remote:r" ); } if run_args.remote_only.is_some() {