diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-10-11 15:21:42 +0200 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-10-11 15:22:03 +0200 |
commit | beeda72826f7288d3edf6cec4114bbda9bbae347 (patch) | |
tree | 76cfb5356e8c601b952fb3a9d84477a5900df070 /plugins/ssh-agent | |
parent | a0ac789f2abf475346505cd372a3843b3b93d91e (diff) | |
download | zsh-beeda72826f7288d3edf6cec4114bbda9bbae347.tar.gz zsh-beeda72826f7288d3edf6cec4114bbda9bbae347.tar.bz2 zsh-beeda72826f7288d3edf6cec4114bbda9bbae347.zip |
fix(ssh-agent): fix for bad `zstyle` command argument
Fixes #10282
Diffstat (limited to 'plugins/ssh-agent')
-rw-r--r-- | plugins/ssh-agent/ssh-agent.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ssh-agent/ssh-agent.plugin.zsh b/plugins/ssh-agent/ssh-agent.plugin.zsh index 4bd2dedcc..c006f1413 100644 --- a/plugins/ssh-agent/ssh-agent.plugin.zsh +++ b/plugins/ssh-agent/ssh-agent.plugin.zsh @@ -97,7 +97,7 @@ else fi # Don't add identities if lazy-loading is enabled -if ! zstyle -b :omz:plugins:ssh-agent lazy; then +if ! zstyle -t :omz:plugins:ssh-agent lazy; then _add_identities fi |