Skip to content
Snippets Groups Projects
Commit af7d02da authored by Naouak's avatar Naouak Committed by Eugen
Browse files

Fix issue with line return in file (#1947)

Fix #1940
parent 5abd5437
No related branches found
No related tags found
No related merge requests found
......@@ -48,9 +48,10 @@ eval "$(rbenv init -)"
cd /vagrant
echo "Compiling Ruby $(cat .ruby-version): warning, this takes a while!!!"
rbenv install $(cat .ruby-version)
rbenv global $(cat .ruby-version)
read RUBY_VERSION < .ruby-version
echo "Compiling Ruby $RUBY_VERSION: warning, this takes a while!!!"
rbenv install $RUBY_VERSION
rbenv global $RUBY_VERSION
# Configure database
sudo -u postgres createuser -U postgres vagrant -s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment