summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Ritter <dritter03@googlemail.com>2017-03-21 03:33:54 +0300
committerDominik Ritter <dritter03@googlemail.com>2017-03-21 03:33:54 +0300
commit454798a2c439aae4f179083f3758f0b2b0f8c145 (patch)
tree3b4f66d0a9b0d89d432b15cb45c1c9c4388244b9
parent3832439759a2f6b68eac3b0e533fdac090d12473 (diff)
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.
-rw-r--r--test-bsd-vm/bootstrap.sh1
1 files changed, 1 insertions, 0 deletions
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