-
Notifications
You must be signed in to change notification settings - Fork 492
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mina does not work on windows due to open4 gem #58
Comments
Try putting this in your deploy.rb: set :term_mode, :exec if Process.respond_to?(:fork) See if it works. I'd love to commit this fix, but I don't have a Windows machine to test, so it'd be nice if any Windows users out there can test out my fix. |
If that doesn't work (maybe require 'rbconfig'
set :term_mode, :exec if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ |
@rstacruz I got the same error running |
@jeremyharris Thanks, I'll implement it then. |
When calling
mina deploy -s
, mina errors out with the messageI called this mina command from within my git bash (msysgit installation) on a Windows 7 64 bit machine. The problem is located at open4 which tries to use the fork command not available on windows.
Is windows support planned?
The text was updated successfully, but these errors were encountered: