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

tjslone 2016-02-24 13:01:48 +00:00
parent 066d46a274
commit 756358e255
1 changed files with 1 additions and 1 deletions

@ -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.