diff options
| author | Jack Nagel | 2014-04-14 22:15:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-14 22:36:40 -0500 |
| commit | dbb4a6777d2210231b9845c40a7b2ea2526196e3 (patch) | |
| tree | f62aea77303552a5cdf4a5c2ad819d2dfbad009b /Library/Contributions/brew_bash_completion.sh | |
| parent | 5773b5f51a4d1b31cabcf298ab6152547a1eb3aa (diff) | |
| download | homebrew-dbb4a6777d2210231b9845c40a7b2ea2526196e3.tar.bz2 | |
Aliases don't have .rb extensions, so no need to remove them
Diffstat (limited to 'Library/Contributions/brew_bash_completion.sh')
| -rw-r--r-- | Library/Contributions/brew_bash_completion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index f0002fddb..e0cda943a 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -62,7 +62,7 @@ __brew_complete_formulae () local cur="${COMP_WORDS[COMP_CWORD]}" local lib=$(brew --repository)/Library local ff=$(\ls ${lib}/Formula 2>/dev/null | sed 's/\.rb//g') - local af=$(\ls ${lib}/Aliases 2>/dev/null | sed 's/\.rb//g') + local af=$(\ls ${lib}/Aliases 2>/dev/null) local tf tap for dir in $(\ls ${lib}/Taps 2>/dev/null); do |
