Skip to content

docs: add uninstall instructions #10335

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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions foundryup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,22 @@ foundryup --path ./git/foundry
**Tip**: All flags have a single character shorthand equivalent! You can use `-i` instead of `--install`, etc.

---


## Uninstalling

Foundry contains everything in a `.foundry` directory, usually located in `/home/user/.foundry/`.

- To uninstall Foundry remove the `.foundry` directory.

##### Note: .foundry directory contains any keystores. Make sure to backup any keystores we want to keep.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
##### Note: .foundry directory contains any keystores. Make sure to backup any keystores we want to keep.
##### Note: .foundry directory can contain keystores. Make sure to backup any keystores you want to keep.



Remove Foundry from PATH:

- Optionally Foundry can be removed from editing shell configuration file (`.bashrc`, `.zshrc`, etc.) and remove the line that adds Foundry to PATH:

```
export PATH="$PATH:/home/user/.foundry/bin"
```

Loading