Closed RyanScottLewis closed 13 years ago
Works when I remove the 'QUIT' string from line 142 in /shotgun-0.9/bin/shotgun
Now I'm getting
!! Unexpected error while processing request: fork() function is unimplemented on this machine
Does shotgun work for Windows?
Going to try to hack this lib in then maybe fork the shotgun if I get it working.
Sorry, Shotgun isn't supported on Windows. If you can come up with something, I'd love to see it.
Sorry, Shotgun isn't supported on Windows. If you can come up with something, I'd love to see it.
I'm having this issue. Since SIGQUIT is a problem in windows could this method be used in shotgun: stereobooster/guard@cbe2cb353c82ce38caf3f58185dd7fb46897f554 ?
Might this work?
require 'rbconfig'
signals = if (RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/)
['INT', 'TERM', 'EXIT', 'ABRT', 'KILL']
else
['INT', 'TERM', 'QUIT']
signals.each do |signal|
This is what I get when running
shotgun
on Win 7 x64.