aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-24 17:16:34 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-24 17:16:34 -0700
commitac10a1b6331c1451dec3e65bb1c34b3bd65a6851 (patch)
tree929ff3b694c6feef69572795c7bd2df7bb30e599
parent961312eab0e44b6b67c3bde536991d442da1118e (diff)
downloadbun-ac10a1b6331c1451dec3e65bb1c34b3bd65a6851.tar.gz
bun-ac10a1b6331c1451dec3e65bb1c34b3bd65a6851.tar.zst
bun-ac10a1b6331c1451dec3e65bb1c34b3bd65a6851.zip
move this to troubleshooting
-rw-r--r--docs/installation.md8
-rw-r--r--docs/troubleshooting.md8
2 files changed, 8 insertions, 8 deletions
diff --git a/docs/installation.md b/docs/installation.md
index a88fa4f6a..576c94e20 100644
--- a/docs/installation.md
+++ b/docs/installation.md
@@ -99,14 +99,6 @@ $ docker run --rm --init --ulimit memlock=-1:-1 oven/bun:edge
this is some output
``` -->
-## Uninstalling
-
-Bun's binary and install cache is located in `~/.bun` by default. To uninstall bun, delete this directory and edit your shell config (`.bashrc`, `.zshrc`, or similar) to remove `~/.bun/bin` from the `$PATH` variable.
-
-```sh
-$ rm -rf ~/.bun # make sure to remove ~/.bun/bin from $PATH
-```
-
## TypeScript
To install TypeScript definitions for Bun's built-in APIs in your project, install `bun-types`.
diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index d104f3bd5..58a670ceb 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -57,3 +57,11 @@ $ sudo zypper install unzip
### bun install is stuck
Please run `bun install --verbose 2> logs.txt` and send them to me in Bun's discord. If you're on Linux, it would also be helpful if you run `sudo perf trace bun install --silent` and attach the logs.
+
+### Uninstalling
+
+Bun's binary and install cache is located in `~/.bun` by default. To uninstall bun, delete this directory and edit your shell config (`.bashrc`, `.zshrc`, or similar) to remove `~/.bun/bin` from the `$PATH` variable.
+
+```sh
+$ rm -rf ~/.bun # make sure to remove ~/.bun/bin from $PATH
+```