aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-12-20 12:32:14 -0500
committerJack Nagel2014-12-20 12:32:14 -0500
commit361e4fcd51cfa461b311ff88b0d3fd2d36a2226c (patch)
tree26dc4332440b0b517b4bca6d1d0d3da09a1e6020 /Library
parent656117c87e8369e7d99cad3c112e50876b132865 (diff)
downloadhomebrew-361e4fcd51cfa461b311ff88b0d3fd2d36a2226c.tar.bz2
autojump: fix path in caveats
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/autojump.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/autojump.rb b/Library/Formula/autojump.rb
index ed3d47f06..990b3812c 100644
--- a/Library/Formula/autojump.rb
+++ b/Library/Formula/autojump.rb
@@ -21,10 +21,10 @@ class Autojump < Formula
def caveats; <<-EOS.undent
Add the following line to your ~/.bash_profile or ~/.zshrc file (and remember
to source the file to update your current session):
- [[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
+ [[ -s $(brew --prefix)/etc/autojump.sh ]] && . $(brew --prefix)/etc/autojump.sh
Add the following line to your ~/.config/fish/config.fish:
- . /usr/local/Cellar/autojump/HEAD/etc/autojump.fish
+ . #{etc}/autojump.fish
EOS
end