Upgrade gems including Jekyll

This commit is contained in:
Ken Dale 2016-05-14 14:38:04 -04:00
parent f0977ce069
commit 3265f0b70f
4 changed files with 83 additions and 82 deletions

10
Vagrantfile vendored
View file

@ -12,11 +12,11 @@ $script_provision = <<SCRIPT
cd /vagrant
bundle install
echo "#!/bin/bash" > /usr/local/bin/jekyll-start.sh
echo "cd /vagrant" >> /usr/local/bin/jekyll-start.sh
echo "source /usr/local/rvm/scripts/rvm" >> /usr/local/bin/jekyll-start.sh
echo "bundle exec jekyll serve --force_polling" >> /usr/local/bin/jekyll-start.sh
chmod +x /usr/local/bin/jekyll-start.sh
echo "#!/bin/bash" > /usr/local/bin/jekyll-start.sh
echo "cd /vagrant" >> /usr/local/bin/jekyll-start.sh
echo "source /usr/local/rvm/scripts/rvm" >> /usr/local/bin/jekyll-start.sh
echo "bundle exec jekyll serve --force_polling --host 0.0.0.0" >> /usr/local/bin/jekyll-start.sh
chmod +x /usr/local/bin/jekyll-start.sh
echo Provisioned!!!
SCRIPT