summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulia <juliariety@gmail.com>2021-04-01 16:42:07 +0200
committerGitHub <noreply@github.com>2021-04-01 09:42:07 -0500
commit4af29d6355bce6ebe2247c5e65857bc758f14866 (patch)
treeb089dafdef4b4aa131be8ee2e48da2ca7517ce00
parent9cf15b7840fc1b96b7986bd1b54760e7e6ffbd7e (diff)
docs(faq): make uninstall instructions shell-indepedent (#2483)
Closes #2484.
-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 738f39b8d..acd9f3c8d 100644
--- a/docs/faq/README.md
+++ b/docs/faq/README.md
@@ -101,5 +101,5 @@ If Starship was installed using the `curl | bash` script, the following command
```sh
# Locate and delete the starship binary
-rm "$(which starship)"
+bash -c 'rm "$(which starship)"'
```