From 756358e25526cff6821e2bd31e0e435b07d86574 Mon Sep 17 00:00:00 2001 From: tjslone Date: Wed, 24 Feb 2016 13:01:48 +0000 Subject: [PATCH] The ln -sf syntax was the wrong way round - we want the symlink to be created in /usr/local/bin pointing to the built version of Vagrant --- Installing-Vagrant-from-Source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installing-Vagrant-from-Source.md b/Installing-Vagrant-from-Source.md index 042b4e5..410232e 100644 --- a/Installing-Vagrant-from-Source.md +++ b/Installing-Vagrant-from-Source.md @@ -57,7 +57,7 @@ Note that you _will_ receive warnings that running Vagrant like this is not supp If you do not want to specify the full path to Vagrant (i.e. you just want to run `vagrant`), you can create a symbolic link to your exec: ```shell -$ ln -sf /usr/local/bin/vagrant /path/to/vagrant/exec/vagrant +$ ln -sf /path/to/vagrant/exec/vagrant /usr/local/bin/vagrant ``` When you want to switch back to the official Vagrant version, simply remove the symlink. \ No newline at end of file