aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-07-12 16:20:39 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-07-12 16:20:39 -0300
commita8168f852961aaca38cc9402e20c7981bc8b82b0 (patch)
treec2070878d26b44bc7b56075acc99075c9c8392f6
parent6fe92f50a22d6d52137d8d843c9353da6b54e333 (diff)
downloadkeyringer-a8168f852961aaca38cc9402e20c7981bc8b82b0.tar.gz
keyringer-a8168f852961aaca38cc9402e20c7981bc8b82b0.tar.bz2
Minor fix
-rw-r--r--lib/keyringer/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyringer/functions b/lib/keyringer/functions
index af84212..add22e2 100644
--- a/lib/keyringer/functions
+++ b/lib/keyringer/functions
@@ -26,7 +26,7 @@ function keyringer_config_load {
function keyringer_config_load_preferences {
# Load custom keyring preferences
- if [ ! -z "$PREFERENCES" ] && [ -e "$PREFERENCES" ]; then
+ if [ ! -z "$PREFERENCES" ] && [ -f "$PREFERENCES" ]; then
source $PREFERENCES
fi
}