From 53ff55bc8e832b54ce031966595e9ed495ffe9d8 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 3 Aug 2020 18:16:26 -0400 Subject: [PATCH] caskroom: Add --caskroom to brew.sh --- Library/Homebrew/brew.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/brew.sh b/Library/Homebrew/brew.sh index 977d3bd06b..3591f9b8aa 100644 --- a/Library/Homebrew/brew.sh +++ b/Library/Homebrew/brew.sh @@ -41,6 +41,7 @@ case "$*" in --prefix) echo "$HOMEBREW_PREFIX"; exit 0 ;; --cellar) echo "$HOMEBREW_CELLAR"; exit 0 ;; --repository|--repo) echo "$HOMEBREW_REPOSITORY"; exit 0 ;; + --caskroom) echo "$HOMEBREW_PREFIX/Caskroom"; exit 0 ;; esac # A depth of 1 means this command was directly invoked by a user.