aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.bash_profile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-07-07 02:42:03 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-07-07 02:42:03 +0300
commit44862ec8f8b08104f56a948196ef08650acbcfdf (patch)
tree089d6ffdb3fb5682f087560971fd0a41c24c9830 /.bash_profile
parentadd strip_pgn_clk (diff)
downloadlinux-home-44862ec8f8b08104f56a948196ef08650acbcfdf.tar.gz
linux-home-44862ec8f8b08104f56a948196ef08650acbcfdf.zip
spawn_ssh_agent: command instead of which
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile5
1 files changed, 2 insertions, 3 deletions
diff --git a/.bash_profile b/.bash_profile
index 2732697..f33ed86 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -45,15 +45,14 @@ fi
spawn_ssh_agent() {
if [ -z "${SSH_AGENT_PID:+x}" -o -z "${SSH_AUTH_SOCK:+x}" ]; then
- local ssh_agent
- ssh_agent="$( which ssh-agent 2> /dev/null )" || return $?
+ local ssh_agent="$( command -v ssh-agent )" || return $?
eval "$( "$ssh_agent" -s )" > /dev/null || return $?
trap "kill $SSH_AGENT_PID" 0
ssh-add || return $?
fi
}
-if [ "$( uname -o )" == "Cygwin" ]; then
+if [ "$( uname -o )" == 'Cygwin' ]; then
spawn_ssh_agent
fi