- Overview
- What Users Should Do
- Uncommitted Casks May Be Deleted
- If Something Goes Wrong
- Technical Background - Parent Project (Homebrew)
- Technical Background - Our Project (Homebrew-cask)
During April-May 2014, the default location of the Homebrew-cask Tap was moved to a new location on disk, from
"$(brew --repository)"/Library/Taps/phinze-cask
to
"$(brew --repository)"/Library/Taps/caskroom/homebrew-cask
(where "$(brew --repository)"
typically evaluates to /usr/local
).
The migration should be seamless, but some users have experienced glitches. We are still making improvements to aid in the transition.
All users should upgrade to the latest Homebrew (0.9.5 or better), and the latest Homebrew-cask (0.34.0 or better):
$ brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup
The first time you execute a brew cask
command, all Tap migrations
should happen for you automatically.
If you have recently created a Cask using brew cask create
, and have not
submitted that Cask to the main GitHub repository (meaning that your local
repository is dirty), you should be aware that Homebrew may delete your
uncommited Casks during the process of Tap migration. See
If you are not in the midst of authoring a Cask, this issue will not affect you.
If something goes wrong with automatic Tap migration:
Try running brew update
again. Some users report that Homebrew's Tap
migration does not fire on the first try.
Try running (for example) brew cask doctor
. Each time you issue a brew cask
command, we examine your directory layout, and attempt to upgrade your
Taps to follow the new standard.
The output of the command
$ brew tap
should show caskroom/cask
in the output. It should not show the
old Tap phinze/cask
.
The following command should migrate you to the new Tap:
$ brew untap phinze/cask; brew tap caskroom/cask
The following directory should exist:
$ ls -ld "$(brew --repository)"/Library/Taps/caskroom/homebrew-cask
The following directories should not exist:
$ ls -ld "$(brew --repository)"/Library/Taps/phinze/homebrew-cask
$ ls -ld "$(brew --repository)"/Library/Taps/phinze-cask
You may see the message
Warning: Could not tap caskroom/homebrew-cask/brew-cask over phinze/homebrew-cask/brew-cask
during Tap migration, which means that two conflicting Taps are present.
The auto-migrate code should fix this problem. If you continue to see this message on subsequent commands, refer to Manually Check Tap Directories above.
Please do let us hear from you if you are having problems. Open an issue at GitHub issues page, or find an open issue which duplicates your problem.
It would be helpful to run
$ brew cask doctor
and paste the results into your comment.
Though we are separate projects, Homebrew-cask is built on the infrastructure provided by Homebrew.
On 24 Apr 2014, the parent project Homebrew changed the layout of the Tap directory to follow the form
"$(brew --repository)"/Library/Taps/<username>/<repo-fullname>
rather than
"$(brew --repository)"/Library/Taps/<username>-<repo-shortname>
causing our project to be moved from
"$(brew --repository)"/Library/Taps/phinze-cask
to
"$(brew --repository)"/Library/Taps/phinze/homebrew-cask
On 3 May 2014, our project also made a change affecting Taps. The main Homebrew-cask repo moved from
https://github.com/phinze/homebrew-cask
to
https://github.com/caskroom/homebrew-cask
This means that the username portion of our Tap path changed from phinze
to caskroom
, ie:
"$(brew --repository)"/Library/Taps/phinze/homebrew-cask
became
"$(brew --repository)"/Library/Taps/caskroom/homebrew-cask