From 454798a2c439aae4f179083f3758f0b2b0f8c145 Mon Sep 17 00:00:00 2001 From: Dominik Ritter Date: Tue, 21 Mar 2017 01:33:54 +0100 Subject: [PATCH] Fix a little problem in BSD On BSD ZSH is installed on a different location than on linux. So we link it there to make sure our later scripts will work. --- test-bsd-vm/bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test-bsd-vm/bootstrap.sh b/test-bsd-vm/bootstrap.sh index f78b3078..a28935ea 100644 --- a/test-bsd-vm/bootstrap.sh +++ b/test-bsd-vm/bootstrap.sh @@ -3,6 +3,7 @@ # Install ZSH sudo pkg install -y zsh sudo chsh -s `which zsh` vagrant +sudo ln -s /usr/local/bin/zsh /usr/bin/zsh # Install git sudo pkg install -y git \ No newline at end of file