diff options
-rw-r--r-- | 12_Prompts.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/12_Prompts.zsh b/12_Prompts.zsh index 9927b88..da36096 100644 --- a/12_Prompts.zsh +++ b/12_Prompts.zsh @@ -102,8 +102,8 @@ update_prompt() # GPG/SSH agents AGENTS="" - [ -f ${KEYCHAIN} ] && source ${KEYCHAIN} - [ -f ${KEYCHAIN}-gpg ] && source ${KEYCHAIN}-gpg + [ -f "${KEYCHAIN}" ] && source ${KEYCHAIN} + [ -f "${KEYCHAIN}-gpg" ] && source ${KEYCHAIN}-gpg # Check ssh-agent only if the env socket has been set and is accessible if [ -S "$SSH_AUTH_SOCK" ] |