From 0efa9feb2bb1db48a58b4782695512e864e0fcae Mon Sep 17 00:00:00 2001 From: Qi Zhang Date: Thu, 21 Jun 2018 12:52:47 -0400 Subject: [PATCH] fix: Calling `brew cask search` is deprecated In most recent homebrew, calling `brew cask search` is deprecated. Use `brew search` instead. See pull-request #4316 (https://github.com/Homebrew/brew/pull/4316) for details. --- modules/homebrew/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/homebrew/init.zsh b/modules/homebrew/init.zsh index e517c0a5..b7cd3c50 100644 --- a/modules/homebrew/init.zsh +++ b/modules/homebrew/init.zsh @@ -31,5 +31,5 @@ alias caskC='brew cask cleanup' alias caski='brew cask install' alias caskl='brew cask list' alias casko='brew cask outdated' -alias casks='brew cask search' +alias casks='brew search' alias caskx='brew cask uninstall'