diff options
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/cli/abstract_command.rb')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/cli/abstract_command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli/abstract_command.rb b/Library/Homebrew/cask/lib/hbc/cli/abstract_command.rb index 7ee3be337..7470e36db 100644 --- a/Library/Homebrew/cask/lib/hbc/cli/abstract_command.rb +++ b/Library/Homebrew/cask/lib/hbc/cli/abstract_command.rb @@ -15,7 +15,7 @@ module Hbc end def self.abstract? - !(name.split("::").last !~ /^Abstract[^a-z]/) + name.split("::").last =~ /^Abstract[^a-z]/ end def self.visible |
