summaryrefslogtreecommitdiffstats
path: root/docs/faq
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2022-03-08 15:47:54 -0500
committerGitHub <noreply@github.com>2022-03-08 15:47:54 -0500
commit48f1f756f8922e2c24b1ee638bd0b8a7ae4be9aa (patch)
tree59a09db539a3cc8c743d64ef46f864dcabb4bef0 /docs/faq
parent076a9e6b8e715fc200812f6a73a17a9764d45aba (diff)
fix: use shell-compatible curl install (#3691)
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 00fcb359d..b8ceb7afc 100644
--- a/docs/faq/README.md
+++ b/docs/faq/README.md
@@ -53,7 +53,7 @@ The prompt will use as much context as is provided, but no flags are "required".
If you get an error like "_version 'GLIBC_2.18' not found (required by starship)_" when using the prebuilt binary (for example, on CentOS 6 or 7), you can use a binary compiled with `musl` instead of `glibc`:
```sh
-sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- --platform unknown-linux-musl
+curl -sS https://starship.rs/install.sh | sh -s -- --platform unknown-linux-musl
```
## Why do I see `Executing command "..." timed out.` warnings?