mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Fix bad ps syntax in ssh-agent plugin
This commit is contained in:
parent
b2376c3770
commit
dd4f57010c
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then
|
||||||
elif [ -f "${_plugin__ssh_env}" ]; then
|
elif [ -f "${_plugin__ssh_env}" ]; then
|
||||||
# Source SSH settings, if applicable
|
# Source SSH settings, if applicable
|
||||||
. ${_plugin__ssh_env} > /dev/null
|
. ${_plugin__ssh_env} > /dev/null
|
||||||
ps -x | grep ${SSH_AGENT_PID} | grep ssh-agent > /dev/null || {
|
ps x | grep ${SSH_AGENT_PID} | grep ssh-agent > /dev/null || {
|
||||||
_plugin__start_agent;
|
_plugin__start_agent;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue