diff options
author | nightpool <eg1290@gmail.com> | 2017-06-22 17:28:52 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-22 23:28:52 +0200 |
commit | 3e8e9c8ae40991ed17fecd504018c2b2fedb0c21 (patch) | |
tree | 1ae04b76a5e3983a320d3c3b649c6c7e69939dbf /Vagrantfile | |
parent | 7bc18058270bd4d3b376bf0bf8f104ebdd178230 (diff) |
Use the stable RVM installer (#3901)
as mentioned by ElvenSpellmaker here: https://github.com/rvm/rvm/issues/4068 Adds a workaround for the issue mentioned by @abcang here: https://github.com/tootsuite/mastodon/pull/3897#issuecomment-310436668 and makes sure that we're using the stable installer to install the stable version.
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 77b5e8350..1f56fcfb3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -42,7 +42,7 @@ sudo apt-get install \ # Install rvm read RUBY_VERSION < .ruby-version gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 -curl -sSL https://get.rvm.io | bash -s stable --ruby=$RUBY_VERSION +curl -sSL https://raw.githubusercontent.com/rvm/rvm/stable/binscripts/rvm-installer | bash -s stable --ruby=$RUBY_VERSION source /home/vagrant/.rvm/scripts/rvm # Install Ruby |