Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix command to delete local turborepo cache #3109

Merged
merged 2 commits into from
Dec 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 10 additions & 2 deletions docs/pages/repo/docs/core-concepts/remote-caching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,16 @@ Your cache artifacts will now be stored locally _and_ in your Remote Cache.
To verify, delete your local Turborepo cache with:

<Tabs items={["unix", "win"]} storageKey="selected-os">
<Tab>```sh rm -rf ./node_modules/.cache/turbo ```</Tab>
<Tab>```sh rd /s /q "./node_modules/.cache/turbo" ```</Tab>
<Tab>
```sh
rm -rf ./node_modules/.cache/turbo
```
</Tab>
<Tab>
```sh
rd /s /q "./node_modules/.cache/turbo"
```
</Tab>
</Tabs>

Then run the same build again. If things are working properly, `turbo` should not execute tasks locally, but rather download both the logs and artifacts from your Remote Cache and replay them back to you.
Expand Down