From: Alexander Barton Date: Sun, 17 Jan 2016 19:48:07 +0000 (+0100) Subject: "brew rdeps": Ignore build dependencies X-Git-Url: https://arthur.barton.de/gitweb/?p=homebrew-alex.git;a=commitdiff_plain;h=bd92d6c6c25628943c0b813fe8bb5d5867f135db "brew rdeps": Ignore build dependencies Signed-off-by: Alexander Barton --- diff --git a/cmd/brew-rdeps b/cmd/brew-rdeps index 342651b..231bc91 100755 --- a/cmd/brew-rdeps +++ b/cmd/brew-rdeps @@ -2,7 +2,7 @@ # 2016-01-17, alex@barton.de for formula in "$@"; do - brew deps --installed \ + brew deps --installed --skip-build \ | grep "\b$formula\b" \ | cut -d':' -f1 done | sort -u