1
0
Fork 0

brew: Make install script robust to aliases

This commit is contained in:
Jeremy Kaplan 2020-02-07 17:31:33 -08:00
commit feb5f59c34
2 changed files with 5 additions and 3 deletions

View file

@ -5,7 +5,7 @@ entr
fd fd
fzf fzf
github/gh/gh github/gh/gh
gpg2 gnupg
htop htop
jq jq
moreutils moreutils

View file

@ -1,4 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
comm -13 <(brew list) brew/formulae | xargs brew install set -eo pipefail
comm -13 <(brew cask list) brew/casks | xargs brew cask install
comm -13 <(brew list --full-name | sort) brew/formulae | xargs brew install -t
comm -13 <(brew cask list) brew/casks | xargs brew cask install -t