From 990dd7de865ccbbc0d0ef5fb62256a86f1c92133 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Mon, 13 Aug 2018 20:10:50 +0200 Subject: [PATCH] Disable `brew cask search` the same time as `brew cask cleanup`. --- Library/Homebrew/compat/hbc/cli/search.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/compat/hbc/cli/search.rb b/Library/Homebrew/compat/hbc/cli/search.rb index 78de221527..8aa761c3c3 100644 --- a/Library/Homebrew/compat/hbc/cli/search.rb +++ b/Library/Homebrew/compat/hbc/cli/search.rb @@ -6,7 +6,7 @@ module Hbc module Compat class Search < AbstractCommand def run - odeprecated "`brew cask search`", "`brew search`" + odeprecated "`brew cask search`", "`brew search`", disable_on: Time.new(2018, 9, 30) Homebrew.search(args.empty? ? "--casks" : args) end