From 138440975fccde96107a24d90b3c9b586c4dc8e5 Mon Sep 17 00:00:00 2001 From: Christian Bundy Date: Wed, 21 Jan 2015 16:17:12 -0800 Subject: [PATCH] Use `which` to find correct zsh path Some environments (like OS X using Homebrew) don't install applications to /usr/bin, so hardcoding the path to zsh is likely to result in the wrong version of zsh being saved as the default shell. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42c68532..08baedf9 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ version is 4.3.17. 4. Set Zsh as your default shell: - chsh -s /bin/zsh + chsh -s $(which zsh) 5. Open a new Zsh terminal window or tab.