From 90dd4eebd668b7fa9ae1471b134284df1b102efc Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Tue, 19 May 2020 20:26:44 -0400 Subject: [PATCH] docs: fix example Starship implementation in bash --- 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 bc758c89..709a8e8d 100644 --- a/docs/faq/README.md +++ b/docs/faq/README.md @@ -31,7 +31,7 @@ STATUS=$? NUM_JOBS=$(jobs -p | wc -l) # Set the prompt to the output of `starship prompt` -PS1="$(starship prompt --status=$STATUS --jobs=NUM_JOBS)" +PS1="$(starship prompt --status=$STATUS --jobs=$NUM_JOBS)" ``` The [Bash implementation](https://github.com/starship/starship/blob/master/src/init/starship.bash) built into Starship is slightly more complex to allow for advanced features like the [Command Duration module](https://starship.rs/config/#Command-Duration) and to ensure that Starship is compatible with pre-installed Bash configurations.