Fix Mac builds (#126)
This commit is contained in:
parent
74b1a11969
commit
43c16d3084
1 changed files with 11 additions and 4 deletions
|
@ -5,8 +5,18 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" </dev/null
|
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" </dev/null
|
||||||
export PATH="/usr/local/bin:$PATH"
|
export PATH="/usr/local/bin:$PATH"
|
||||||
|
|
||||||
|
set +e
|
||||||
|
brew unlink gnupg
|
||||||
|
brew unlink gnupg2
|
||||||
|
brew uninstall gnupg
|
||||||
|
brew uninstall gnupg2
|
||||||
|
brew unlink dirmngr
|
||||||
|
brew uninstall dirmngr
|
||||||
|
brew unlink gpg-agent
|
||||||
|
brew uninstall gpg-agent
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
brew install --force gnupg2
|
||||||
brew update
|
brew update
|
||||||
brew upgrade
|
brew upgrade
|
||||||
|
|
||||||
|
@ -23,17 +33,14 @@ brew install \
|
||||||
watch \
|
watch \
|
||||||
zsh
|
zsh
|
||||||
|
|
||||||
brew unlink gnupg2
|
|
||||||
brew uninstall gnupg2
|
|
||||||
|
|
||||||
brew install --force \
|
brew install \
|
||||||
coreutils \
|
coreutils \
|
||||||
curl \
|
curl \
|
||||||
dos2unix \
|
dos2unix \
|
||||||
findutils \
|
findutils \
|
||||||
gawk \
|
gawk \
|
||||||
gnu-sed \
|
gnu-sed \
|
||||||
gnupg2 \
|
|
||||||
gpg-agent \
|
gpg-agent \
|
||||||
htop-osx \
|
htop-osx \
|
||||||
httpie \
|
httpie \
|
||||||
|
|
Loading…
Reference in a new issue