From 0e29f619489e6e5b12e30de4800dac290e892931 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Mon, 18 Apr 2016 09:01:52 -0400 Subject: [PATCH] fix dinghy init --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 2da05a3..96e9335 100644 --- a/zshrc +++ b/zshrc @@ -44,7 +44,7 @@ export rvm_project_rvmrc=1 test -e ${HOME}/.rvm/scripts/rvm && source ${HOME}/.rvm/scripts/rvm # Check if dinghy is installed, and run shellinit if it exists -which dinghy 2>1 >/dev/null && eval $(dinghy shellinit) +which dinghy 2>&1 >/dev/null && eval $(dinghy shellinit) # Setup NVM export NVM_DIR=~/.nvm