From 5a7ab1fe5d91776a902a6416d537a2fead09471a Mon Sep 17 00:00:00 2001 From: Chad Morrison Date: Wed, 7 Mar 2012 19:53:46 -0700 Subject: [PATCH] Fix for multiple identities with ssh-agent. --- plugins/ssh-agent/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ssh-agent/init.zsh b/plugins/ssh-agent/init.zsh index 49e2fef7..082ea830 100644 --- a/plugins/ssh-agent/init.zsh +++ b/plugins/ssh-agent/init.zsh @@ -38,7 +38,7 @@ function _ssh-agent-start() { if [[ ! -n "${identities}" ]]; then ssh-add else - ssh-add "${HOME}/.ssh/${^identities}" + ssh-add "${HOME}/.ssh/${^identities[@]}" fi }