-
Notifications
You must be signed in to change notification settings - Fork 8
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
Tips to disable NFS on windows platform in your vagrantfile #12
Comments
very cool thanks. I still can't get windows to work properly though I am using my fork with other updates https://github.com/mhenke/railo-vagrant/ |
I used billy's and windows worked. must be something i did on my fork |
Another thing is that many host windows system are still in 32bits. |
My pull request #11 has this tickets fix in it. Seems my fork is working with windows again too. |
@devalnor we could add code in the node.js for operating system 32 or 64 or maybe even a ruby check to set poperly |
['a'].pack('P').length > 4 ? "64Bit" : "32Bit" |
In local projects that I've used this as a basis for, I typically just write Ruby in Vagrantfile - I'll try to backport some of the work I've done to this project |
I'm not sure that is a good idea to code the operating system dynamically |
config.vm.share_folder "code", "...", "...", :nfs=> (RUBY_PLATFORM =~ /mingw32/).nil?
The text was updated successfully, but these errors were encountered: