diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-20 13:29:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-20 13:29:07 -0300 |
commit | 82f7c084cf17fb8bc2b4d489c986e57f986b7a4d (patch) | |
tree | bd81b0f1e872464200a4d68716dc11e8c92c29b0 /lib | |
parent | 57cb1ce7ce84a421ac024b75654b12139b9c3e1f (diff) | |
download | keyringer-82f7c084cf17fb8bc2b4d489c986e57f986b7a4d.tar.gz keyringer-82f7c084cf17fb8bc2b4d489c986e57f986b7a4d.tar.bz2 |
Fix test output at xclip action
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/keyringer/actions/xclip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyringer/actions/xclip b/lib/keyringer/actions/xclip index b28984f..0ce0652 100755 --- a/lib/keyringer/actions/xclip +++ b/lib/keyringer/actions/xclip @@ -39,7 +39,7 @@ LIB="`dirname $0`/../functions" source "$LIB" || exit 1 # Check for xclip -if ! which xclip; then +if ! which xclip &> /dev/null; then echo "fatal: xclip not found" exit 1 fi |