Skip to content

Commit

Permalink
Address `Error: caskroom/cask was moved. Tap homebrew/cask-cask inste…
Browse files Browse the repository at this point in the history
…ad. `

This error message suggests using `tap homebrew/cask-cask`,
actually it does not work, refer "FYI - `tap homebrew/cask-cask` cause this error:" below.

* Without this change:
```
$ brew bundle
Using homebrew/core
Using homebrew/bundle
Using homebrew/services
Error: caskroom/cask was moved. Tap homebrew/cask-cask instead.
Tapping caskroom/cask has failed!
```

* With this change:
```
$ brew bundle
Using homebrew/core
Using homebrew/bundle
Using homebrew/services
Tapping homebrew/cask
Installing ffmpeg
Installing memcached
Installing mysql
Installing postgresql
Installing redis
Installing yarn
Password:
Installing xquartz
Installing mupdf
Installing poppler
Installing imagemagick
Homebrew Bundle complete! 14 Brewfile dependencies now installed.
$
```

* FYI - `tap homebrew/cask-cask` cause this error:

```
$ brew bundle
Using homebrew/core
Using homebrew/bundle
Using homebrew/services
Username for 'https://github.com': yahonda
Password for 'https://yahonda@github.com':
==> Tapping homebrew/cask-cask
Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask-cask'...
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/Homebrew/homebrew-cask-cask/'
Error: Failure while executing; git clone https://github.com/Homebrew/homebrew-cask-cask /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask-cask --depth=1 exited with 128.
Tapping homebrew/cask-cask has failed!
```
  • Loading branch information
yahonda committed Dec 18, 2019
1 parent c135b92 commit 5cb513a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
tap "homebrew/core"
tap "homebrew/bundle"
tap "homebrew/services"
tap "caskroom/cask"
tap "homebrew/cask"
brew "ffmpeg"
brew "memcached"
brew "mysql"
Expand Down

0 comments on commit 5cb513a

Please sign in to comment.