Skip to content
Merged
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
chore: update docs to fix ordering of OS options
On https://coder.com/docs/install/uninstall at present we order the top OS listing as "Linux | macOS | Windows", while in the `Coder settings, cache, and the optional built-in PostgreSQL database` paragraph towards the bottom of the page we change to using "macOS | Linux | Windows" for some reason. This PR moves Linux to be listed first instead of macOS in the bottom paragraph to match the ordering of the top section.
  • Loading branch information
rowansmithau authored Aug 18, 2025
commit f14e0ff0b3445f2b4dad1b78abdd6103570ae0a7
10 changes: 5 additions & 5 deletions docs/install/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,17 @@ performing the following step or copying the directory to another location.

<div class="tabs">

## macOS
## Linux

```shell
rm -rf ~/Library/Application\ Support/coderv2
rm -rf ~/.config/coderv2
rm -rf ~/.cache/coder
```

## Linux
## macOS

```shell
rm -rf ~/.config/coderv2
rm -rf ~/.cache/coder
rm -rf ~/Library/Application\ Support/coderv2
```

## Windows
Expand Down
Loading