aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorDominyk Tiller2016-08-28 05:01:14 +0100
committerGitHub2016-08-28 05:01:14 +0100
commit8e29cf1b1d39f5d86aaeb702597aa34d97cd763a (patch)
tree1a8e7791775458e32ca73e227d84496898143a13 /Library/Homebrew/cmd
parent7c5e149b1b56f59ce36dae145961d5ceb6cd3ac9 (diff)
parentab203a749f050486bd174fc7e29bd2a246333b80 (diff)
downloadbrew-8e29cf1b1d39f5d86aaeb702597aa34d97cd763a.tar.bz2
Merge pull request #812 from DomT4/at
formulary: handle @ formulae.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/search.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb
index 526c7220d..2a100083d 100644
--- a/Library/Homebrew/cmd/search.rb
+++ b/Library/Homebrew/cmd/search.rb
@@ -83,7 +83,7 @@ module Homebrew
end
if $stdout.tty?
- metacharacters = %w[\\ | ( ) [ ] { } ^ $ * + ? .]
+ metacharacters = %w[\\ | ( ) [ ] { } ^ $ * + ?]
bad_regex = metacharacters.any? do |char|
ARGV.any? do |arg|
arg.include?(char) && !arg.start_with?("/")