diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | lib/keyringer/actions/xclip | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2014-02-20 - Silvio Rhatto <rhatto@riseup.net> + + Fix test output at xclip action + 2014-02-20 - 0.3 - Silvio Rhatto <rhatto@riseup.net> 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 |