diff options
| author | Tej Chajed | 2015-01-28 13:45:30 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2015-01-29 14:29:52 +0000 |
| commit | d5d031a63400d18e977ba4e234c1d72a6cde97eb (patch) | |
| tree | 436fd3b7557197f12c3150d761cb003222dae552 /Library/Formula | |
| parent | ca0dbf0691485eab1a6d60390d01874ebd323358 (diff) | |
| download | homebrew-d5d031a63400d18e977ba4e234c1d72a6cde97eb.tar.bz2 | |
autojump: fix fish configuration line.
Fish doesn't have an && operator, it uses the `and` builtin.
Closes #36329.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/autojump.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/autojump.rb b/Library/Formula/autojump.rb index 629f747df..3589b8627 100644 --- a/Library/Formula/autojump.rb +++ b/Library/Formula/autojump.rb @@ -22,7 +22,7 @@ class Autojump < Formula [[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh If you use the Fish shell then add the following line to your ~/.config/fish/config.fish: - [ -f #{HOMEBREW_PREFIX}/share/autojump/autojump.fish ] && . #{HOMEBREW_PREFIX}/share/autojump/autojump.fish + [ -f #{HOMEBREW_PREFIX}/share/autojump/autojump.fish ]; and . #{HOMEBREW_PREFIX}/share/autojump/autojump.fish EOS end |
