From 828125f4ca301bef79a407da902738725e67fef3 Mon Sep 17 00:00:00 2001 From: leonardo lopes de albuquerque Date: Fri, 3 Apr 2015 22:24:59 -0300 Subject: [PATCH] Tips N' Tricks: fixed tab recognition for bash. changed from `brew --repository` to $(brew --repository) Closes Homebrew/homebrew#38352. Signed-off-by: Mike McQuaid --- share/doc/homebrew/Tips-N'-Tricks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/doc/homebrew/Tips-N'-Tricks.md b/share/doc/homebrew/Tips-N'-Tricks.md index 83dd64f639..70f2a46c0d 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 ```