Commit dd4f5701 authored by nishigori's avatar nishigori
Browse files

Fix bad ps syntax in ssh-agent plugin

parent b2376c37
...@@ -57,7 +57,7 @@ if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then ...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment