From 03852b5b20fdae702b9a124bf3d271605d08dd62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iwan=20Cl=C3=A9ment?= Date: Mon, 7 May 2018 12:29:56 +0200 Subject: [PATCH] Correction de syntaxe dans Phase 4. cd ~/.rbenv --- files/Install-Mastodon-Phase4.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/Install-Mastodon-Phase4.sh b/files/Install-Mastodon-Phase4.sh index 421a66d..6ef6273 100644 --- a/files/Install-Mastodon-Phase4.sh +++ b/files/Install-Mastodon-Phase4.sh @@ -3,9 +3,9 @@ # Let's install ruby 2.5.0 echo Phase 4: Installation de Ruby git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build || exit 301 -cd .rbenv || exit 302 -rbenv install 2.5.0 || exit 303 -rbenv global 2.5.0 || exit 304 +cd ~/.rbenv || exit 302 +cd ~/.rbenv && rbenv install 2.5.0 || exit 303 +cd ~/.rbenv && rbenv global 2.5.0 || exit 304 ruby -v cd ~