Put text into a text box (#5228)

* Put text into a text box

* Fix lint error with extra line
This commit is contained in:
Eric Van Norman 2019-10-22 13:32:02 -05:00 committed by Martin Taillefer
parent 5653996827
commit c73c9df09b
1 changed files with 6 additions and 2 deletions

View File

@ -89,7 +89,9 @@ $ brew install bash-completion
Once the `bash-completion package` has been installed on your macOS system, add the following line to your `~/.bash_profile` file:
`[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"`
{{< text plain >}}
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"
{{< /text >}}
{{< /tab >}}
@ -99,7 +101,9 @@ If you are using a Linux-based operating system, you can install the Bash comple
Once the `bash-completion` package has been installed on your Linux system, add the following line to your `~/.bash_profile` file:
`[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"`
{{< text plain >}}
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"
{{< /text >}}
{{< /tab >}}