use SIGINT instead of KILL so the pid gets cleaned up

This commit is contained in:
Darrin Holst 2012-01-30 08:20:47 -06:00
parent 70d76d166d
commit 963b9e0ab2

View File

@ -18,9 +18,9 @@ module Guard
def stop
if File.file?(pid_file)
system %{kill -KILL #{File.read(pid_file).strip}}
system %{kill -SIGINT #{File.read(pid_file).strip}}
wait_for_no_pid if $?.exitstatus == 0
FileUtils.rm pid_file
FileUtils.rm pid_file, :force => true
end
end