aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-04-14 22:15:05 -0500
committerJack Nagel2014-04-14 22:36:40 -0500
commit76b0140af5335aec06ff57e9979e26817ee17c4b (patch)
tree792d34d18563997179a8d1655a7b5fa8afd556f0
parent581e1b2c7eef68a25f73f95a6bcc50d6fa22af68 (diff)
downloadbrew-76b0140af5335aec06ff57e9979e26817ee17c4b.tar.bz2
Aliases don't have .rb extensions, so no need to remove them
-rw-r--r--Library/Contributions/brew_bash_completion.sh2
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