Correction de syntaxe dans Phase 4. cd ~/.rbenv

This commit is contained in:
2018-05-07 12:29:56 +02:00
parent e01310d60f
commit 03852b5b20

View File

@@ -3,9 +3,9 @@
# Let's install ruby 2.5.0 # Let's install ruby 2.5.0
echo Phase 4: Installation de Ruby echo Phase 4: Installation de Ruby
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build || exit 301 git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build || exit 301
cd .rbenv || exit 302 cd ~/.rbenv || exit 302
rbenv install 2.5.0 || exit 303 cd ~/.rbenv && rbenv install 2.5.0 || exit 303
rbenv global 2.5.0 || exit 304 cd ~/.rbenv && rbenv global 2.5.0 || exit 304
ruby -v ruby -v
cd ~ cd ~