diff options
author | Kazuhiro NISHIYAMA <znz@users.noreply.github.com> | 2017-04-15 02:10:38 +0900 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-14 19:10:38 +0200 |
commit | 66ea015a017d97ecbd18eb850a033ca0c32e7957 (patch) | |
tree | 09a6bc27cd7f21798723d70bea8734bd820fb622 /Vagrantfile | |
parent | 1616cf98a1f9e87956ce03f82d5e6167c66d5dd5 (diff) |
Remove current directory from PATH (#1779)
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 90f604640..66892e443 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -43,7 +43,7 @@ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build -export PATH="$HOME/.rbenv/bin::$PATH" +export PATH="$HOME/.rbenv/bin:$PATH" eval "$(rbenv init -)" cd /vagrant |