aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorleonardo lopes de albuquerque2015-04-03 22:24:59 -0300
committerMike McQuaid2015-04-06 21:39:00 +0100
commit5df00e1fd07253c81205099f62112c9fb9a03967 (patch)
treee31de5b006689cd5aee19ed88c16823ba851e214 /share
parent0e827b627d3c9be1f7101cb2dae8305c4efe127d (diff)
downloadhomebrew-5df00e1fd07253c81205099f62112c9fb9a03967.tar.bz2
Tips N' Tricks: fixed tab recognition for bash.
changed from `brew --repository` to $(brew --repository) Closes #38352. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'share')
-rw-r--r--share/doc/homebrew/Tips-N'-Tricks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/homebrew/Tips-N'-Tricks.md b/share/doc/homebrew/Tips-N'-Tricks.md
index 83dd64f63..70f2a46c0 100644
--- a/share/doc/homebrew/Tips-N'-Tricks.md
+++ b/share/doc/homebrew/Tips-N'-Tricks.md
@@ -39,7 +39,7 @@ And of course, you can simply `brew link $FORMULA` again afterwards!
Add to your `~/.bashrc` or `~/.bash_profile` (whichever you have configured to run on shell startup):
```bash
-source `brew --repository`/Library/Contributions/brew_bash_completion.sh
+source $(brew --repository)/Library/Contributions/brew_bash_completion.sh
```