diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-02-25 00:46:38 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-02-25 00:46:57 +0100 |
commit | c26995595f17f08a6bedb7b3a4bf6640623348b6 (patch) | |
tree | 2d4c782ec72de3a935fe17c648f37bb65b5ccf81 | |
parent | 89e99a668bfbc791fc084a60aafe87f43cfa8f39 (diff) | |
download | dotfiles-c26995595f17f08a6bedb7b3a4bf6640623348b6.tar.gz dotfiles-c26995595f17f08a6bedb7b3a4bf6640623348b6.tar.bz2 dotfiles-c26995595f17f08a6bedb7b3a4bf6640623348b6.zip |
pass --debug to equery to make it shut up -- also for the 'masked' call
Diffstat (limited to '')
-rw-r--r-- | .zsh/zshfunctions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh/zshfunctions b/.zsh/zshfunctions index d97042b..b9c074e 100644 --- a/.zsh/zshfunctions +++ b/.zsh/zshfunctions @@ -22,7 +22,7 @@ open_ebuild () if [[ -z $ebuild ]]; then echo "Trying masked packages too..." - ebuild=$(equery w -m $2 2> /dev/null) + ebuild=$(equery --debug w -m $2 2> /dev/null) fi if [[ -n $ebuild ]]; then |