From d79f6f365da921d551e75b8861cc61c85278559b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dario=20Vladovi=C4=87?= Date: Mon, 5 Apr 2021 16:48:24 +0200 Subject: [PATCH] docs(faq): change uninstall snippet to use `sh` (#2552) --- 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 acd9f3c8d..c073888d2 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 -bash -c 'rm "$(which starship)"' +sh -c 'rm "$(which starship)"' ```