Skip to content

Commit

Permalink
shrc: include bottle build deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Aug 26, 2018
1 parent 7646d56 commit 08cf0c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shrc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ then
brew_bottled_deps() {
for DEP in "$@"; do
echo "$DEP deps:"
brew deps "$DEP" | xargs brew info | grep stable
brew deps --include-build "$DEP" | xargs brew info | grep stable
[ "$#" -ne 1 ] && echo
done
}

# Output the most popular unbottled Homebrew packages
brew_popular_unbottled() {
brew deps --all |
brew deps --include-build --all |
awk '{ gsub(":? ", "\n") } 1' |
sort |
uniq -c |
Expand Down

0 comments on commit 08cf0c1

Please sign in to comment.