Browse Source

Fix SSH agent identities check, close #19

master
Sorin Ionescu 13 years ago
parent
commit
e250df829e
  1. 6
      plugins/ssh-agent/init.zsh

6
plugins/ssh-agent/init.zsh

@ -35,10 +35,10 @@ function _ssh-agent-start() {
# Load identities. # Load identities.
zstyle -a ':omz:plugin:ssh-agent' identities 'identities' zstyle -a ':omz:plugin:ssh-agent' identities 'identities'
if [[ ! -n "${identities}" ]]; then if (( ${#identities} > 0 )); then
ssh-add ssh-add "${HOME}/.ssh/${^identities[@]}"
else else
ssh-add "${HOME}/.ssh/${^identities}" ssh-add
fi fi
} }

Loading…
Cancel
Save