chore(brew): update brew cask aliases for new --cask invocation method

This commit is contained in:
2020-12-01 09:55:51 +00:00
parent 2bf7e812e2
commit a6318fdd1e

View File

@@ -30,10 +30,15 @@ alias devnullsmtp="java -jar $DOTBIN/DevNullSmtp.jar"
# Homebrew
if command-exists brew; then
alias br="brew"
alias ca="brew cask"
alias cask="brew cask"
alias bb="brew bundle"
alias bbg="brew bundle --global"
cask() {
local cmd="$1"
shift 1
brew "$cmd" --cask "$@"
}
alias ca="cask"
fi
# Flutter