From 4af29d6355bce6ebe2247c5e65857bc758f14866 Mon Sep 17 00:00:00 2001 From: Julia Date: Thu, 1 Apr 2021 16:42:07 +0200 Subject: [PATCH] docs(faq): make uninstall instructions shell-indepedent (#2483) Closes #2484. --- docs/faq/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)"' ```