From 261384f915e3cd874b8ca4aafe6ab879b856e349 Mon Sep 17 00:00:00 2001 From: Dan Barr <6922515+danbarr@users.noreply.github.com> Date: Fri, 31 Oct 2025 16:20:24 -0400 Subject: [PATCH] Add paths to Linux uninstall steps Signed-off-by: Dan Barr <6922515+danbarr@users.noreply.github.com> --- docs/toolhive/guides-cli/install.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/toolhive/guides-cli/install.mdx b/docs/toolhive/guides-cli/install.mdx index c50ea76..868dff0 100644 --- a/docs/toolhive/guides-cli/install.mdx +++ b/docs/toolhive/guides-cli/install.mdx @@ -282,8 +282,12 @@ To uninstall ToolHive: # Delete the ToolHive configuration and log files # macOS: rm -rf ~/Library/Application\ Support/toolhive/ + # Linux: rm -rf ~/.config/toolhive/ + rm -rf ~/.local/share/toolhive/ + rm -rf ~/.local/state/toolhive/ + # Windows: Remove-Item "$env:LOCALAPPDATA\toolhive" -Recurse -Force ```