From 8c73c93ed406d0653ec68a657940561d1b6319e7 Mon Sep 17 00:00:00 2001 From: Max Bucknell Date: Sun, 3 May 2015 23:23:11 +0100 Subject: [PATCH] Remove quotes to make subshell work --- fish/functions/start_agent.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/functions/start_agent.fish b/fish/functions/start_agent.fish index 6dcda72..989fef8 100644 --- a/fish/functions/start_agent.fish +++ b/fish/functions/start_agent.fish @@ -4,6 +4,6 @@ function start_agent echo "succeeded" chmod 600 $SSH_ENV . $SSH_ENV > /dev/null - ssh-add "~/.ssh/id_(nice_hostname)" + ssh-add ~/.ssh/id_(nice_hostname) end