From 4b8bb68e56dab5a10b366856804d3436c866d8d9 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 12 Sep 2013 14:05:16 -0400 Subject: [PATCH] Cleanup newlines in Commands::Serve --- lib/jekyll/commands/serve.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/jekyll/commands/serve.rb b/lib/jekyll/commands/serve.rb index 9cec5457..92a6aa48 100644 --- a/lib/jekyll/commands/serve.rb +++ b/lib/jekyll/commands/serve.rb @@ -23,10 +23,7 @@ module Jekyll Process.detach(pid) Jekyll.logger.info "Server detatched with pid '#{pid}'.", "Run `kill -9 #{pid}' to stop the server." else # create a new server thread, then join it with current terminal - t = Thread.new { - - s.start - } + t = Thread.new { s.start } trap("INT") { s.shutdown } t.join() end