summaryrefslogtreecommitdiffstats
path: root/docs/faq
diff options
context:
space:
mode:
authorTobias <tobias.nikolai.clasen@gmail.com>2022-01-07 21:53:22 +0100
committerGitHub <noreply@github.com>2022-01-07 21:53:22 +0100
commit20a78c1153550cd507f29f8af3138ce6333bcf06 (patch)
treec91ebdc8ffa860232c82e13ab6f0684b9fdf5c52 /docs/faq
parent500dc3ea6e2989a6a9e8b9960a8e9d7aa44d559d (diff)
docs(faq): for uninstalling, change which to command -v (#3394)
* Changed 'which' to 'command -v' which is more general, and available on more systems * docs: for uninstalling, change which to command -v
Diffstat (limited to 'docs/faq')
-rw-r--r--docs/faq/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/faq/README.md b/docs/faq/README.md
index cf997ebdd..94eb28373 100644
--- a/docs/faq/README.md
+++ b/docs/faq/README.md
@@ -143,5 +143,5 @@ If Starship was installed using the install script, the following command will d
```sh
# Locate and delete the starship binary
-sh -c 'rm "$(which starship)"'
+sh -c 'rm "$(command -v 'starship')"'
```