From ebd48b2b0cc326a55e4ca167c5b6ad4e890c3c02 Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Mon, 19 Oct 2009 10:02:17 +0200 Subject: [Prompt] Tests if keychain files are readable, not if they only exist --- 12_Prompts.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '12_Prompts.zsh') diff --git a/12_Prompts.zsh b/12_Prompts.zsh index e350980..f44d124 100644 --- a/12_Prompts.zsh +++ b/12_Prompts.zsh @@ -105,8 +105,8 @@ update_prompt() # GPG/SSH agents AGENTS="" - [ -f "${KEYCHAIN}" ] && source ${KEYCHAIN} - [ -f "${KEYCHAIN}-gpg" ] && source ${KEYCHAIN}-gpg + [ -r "${KEYCHAIN}" ] && source ${KEYCHAIN} + [ -r "${KEYCHAIN}-gpg" ] && source ${KEYCHAIN}-gpg # Check ssh-agent only if the env socket has been set and is accessible if [ -S "$SSH_AUTH_SOCK" ] -- cgit v1.2.3