From f14e0ff0b3445f2b4dad1b78abdd6103570ae0a7 Mon Sep 17 00:00:00 2001 From: Rowan Smith Date: Mon, 18 Aug 2025 11:26:40 +1000 Subject: [PATCH] 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. --- docs/install/uninstall.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/install/uninstall.md b/docs/install/uninstall.md index 7a94b22b25f6c..c04bd6e9c2723 100644 --- a/docs/install/uninstall.md +++ b/docs/install/uninstall.md @@ -74,17 +74,17 @@ performing the following step or copying the directory to another location.
-## 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