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
parent
066d46a274
commit
756358e255
|
@ -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.
|
Loading…
Reference in New Issue