guard / guard-nanoc

A Guard for nanoc
39 stars 9 forks source link

Server doesn't always terminate when guard exists #27

Closed RubenVerborgh closed 8 years ago

RubenVerborgh commented 8 years ago

It often happens to me (OS X) that the HTTP server doesn't terminate when I stop guard, even though:

11:27:50 - INFO - Stopping process server
11:27:50 - INFO - Stopped process server

11:27:50 - INFO - Bye bye...
denisdefreyne commented 8 years ago

guard-nanoc doesn’t run a HTTP server. Maybe you have nanoc view or adsf running somewhere?

RubenVerborgh commented 8 years ago

Ah woops, my Guardfile indeed has

guard :process, name: 'server', command: 'bundle exec serve' do
  watch 'Gemfile.lock'
end

Must have picked this up from somewhere.

RubenVerborgh commented 8 years ago

guard -i solved this BTW