From 4c7b690e6ac0d25b142a1c0bb3d0e4f5597b5663 Mon Sep 17 00:00:00 2001 From: Viktor Jackson Date: Sun, 7 Jul 2013 23:12:10 +0200 Subject: [PATCH] Full path --- modules/ssh-envoy/init.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ssh-envoy/init.zsh b/modules/ssh-envoy/init.zsh index 33e938d6..32b381ff 100644 --- a/modules/ssh-envoy/init.zsh +++ b/modules/ssh-envoy/init.zsh @@ -28,10 +28,10 @@ else for _ssh_id in $_ssh_identities do # Check identities and add ones that aren't already added - envoy -l | grep "$HOME/.ssh/$_ssh_id" > /dev/null + /usr/bin/envoy -l | grep "$HOME/.ssh/$_ssh_id" > /dev/null if [[ $? != 0 ]]; then echo "New identity: $_ssh_id" - envoy -a $_ssh_id + /usr/bin/envoy -a $_ssh_id fi done fi