From 82f7c084cf17fb8bc2b4d489c986e57f986b7a4d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 20 Feb 2014 13:29:07 -0300 Subject: Fix test output at xclip action --- ChangeLog | 4 ++++ lib/keyringer/actions/xclip | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e7f7cf7..71f541d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-02-20 - Silvio Rhatto + + Fix test output at xclip action + 2014-02-20 - 0.3 - Silvio Rhatto Try to find a similar file at keyringer_get_file 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 -- cgit v1.2.3