Changeset 1234

Show
Ignore:
Timestamp:
01/09/08 14:10:07 (8 months ago)
Author:
e.@brainspl.at
Message:

make sure merb -k all works again

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/merb/server.rb

    r1229 r1234  
    5656       
    5757      def kill(ports, sig=9) 
    58         puts "killing #{ports}, sig: #{sig}" 
    5958        begin 
    6059          Dir[Merb::Config[:merb_root] + "/log/merb.#{ports == 'all' ? '*' : ports }.pid"].each do |f| 
     
    6261            Process.kill(sig, pid) 
    6362            FileUtils.rm f 
    64             puts "killed PID #{pid} with signal #{signal}" 
     63            puts "killed PID #{pid} with signal #{sig}" 
    6564          end 
    6665        rescue