mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-24 21:03:26 +00:00
Issue #61: More robust homebrew installation.
This commit is contained in:
parent
3b802aa4cd
commit
24abee90f9
1 changed files with 5 additions and 2 deletions
|
@ -5,8 +5,11 @@ language: objective-c
|
|||
osx_image: xcode9.3
|
||||
|
||||
before_install:
|
||||
# Uninstall existing brew installation.
|
||||
- yes '' | 'ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"'
|
||||
# Uninstall existing Homebrew installation.
|
||||
- curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall
|
||||
- chmod +x uninstall
|
||||
- yes '' | ./uninstall
|
||||
- rm -f uninstall
|
||||
- rm -rf /usr/local/Homebrew
|
||||
- rm -rf /usr/local/Caskroom
|
||||
- rm -rf /usr/local/bin/brew
|
||||
|
|
Loading…
Reference in a new issue