From a42576d15913ebe5bd62bb1d33bdc8419c1397b9 Mon Sep 17 00:00:00 2001 From: Nathen Harvey Date: Thu, 21 Jul 2011 15:17:01 -0700 Subject: [PATCH] Add a missing backtick to the unicorn_restart_cmd template --- lib/webistrano/template/unicorn.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/webistrano/template/unicorn.rb b/lib/webistrano/template/unicorn.rb index 1c105eb86..c47fd5a57 100644 --- a/lib/webistrano/template/unicorn.rb +++ b/lib/webistrano/template/unicorn.rb @@ -31,7 +31,7 @@ def unicorn_stop_cmd end def unicorn_restart_cmd - "kill -USR2 `cat #{unicorn_pid}" + "kill -USR2 `cat #{unicorn_pid}`" end namespace :webistrano do