Merge pull request #2220 from nishigori/fix-bad-ps-syntax

When using ssh-agent plugin, It output a warning message
This commit is contained in:
Robby Russell 2013-11-04 16:31:52 -08:00
commit e30a1243dc
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then
elif [ -f "${_plugin__ssh_env}" ]; then
# Source SSH settings, if applicable
. ${_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;
}
else