From bdc31aa55d9a4803fbf6d5efad27735a1f0da6ac Mon Sep 17 00:00:00 2001 From: Claudia Date: Tue, 4 Sep 2018 07:25:28 +0200 Subject: [PATCH] Remove alias for `brew cask search` In Homebrew (the upstream project), `brew cask search` was merged into `brew search` a few months ago [1]. On 2018-09-30, `brew cask search` will be disabled altogether [2]. Since the output of `brew cask search` used to be subject to change at any time and was never meant to be parsed, scripts should not rely on the `bcsr` alias. So I figure it may not hurt to remove the `bcsr` alias from Bash-it before that deadline. [1]: https://github.com/Homebrew/brew/pull/4316 [2]: https://github.com/Homebrew/brew/commit/990dd7de865ccbbc0d0ef5fb62256a86f1c92133 --- aliases/available/homebrew-cask.aliases.bash | 1 - 1 file changed, 1 deletion(-) diff --git a/aliases/available/homebrew-cask.aliases.bash b/aliases/available/homebrew-cask.aliases.bash index 090622b0..57d8161c 100644 --- a/aliases/available/homebrew-cask.aliases.bash +++ b/aliases/available/homebrew-cask.aliases.bash @@ -7,7 +7,6 @@ alias bcin='brew cask install' alias bcrm='brew cask uninstall' alias bczp='brew cask zap' alias bccl='brew cask cleanup' -alias bcsr='brew cask search' alias bcls='brew cask list' alias bcinf='brew cask info' alias bcdr='brew cask doctor'