Procházet zdrojové kódy

Fix issue with line return in file (#1947)

Fix #1940
master
Naouak před 7 roky
committed by Eugen
rodič
revize
af7d02da5d
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. +4
    -3
      Vagrantfile

+ 4
- 3
Vagrantfile Zobrazit soubor

@@ -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


Načítá se…
Zrušit
Uložit