From 7d2ab1be7ee3b90e6a054645352d08a9c97c324b Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Tue, 13 Sep 2016 12:46:02 -0500 Subject: [PATCH] Exec middleman server fails with invalid flags --force-polling and -l. Removed the flags to remedy. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 47227f8..d926c34 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -34,6 +34,6 @@ Vagrant.configure(2) do |config| echo "Starting up middleman at http://localhost:4567" echo "If it does not come up, check the ~/middleman.log file for any error messages" cd /vagrant - bundle exec middleman server --force-polling -l 1 &> ~/middleman.log & + bundle exec middleman server &> ~/middleman.log & SHELL end