sig-windows-dev-tools
                                
                                
                                
                                    sig-windows-dev-tools copied to clipboard
                            
                            
                            
                        True Windows Support
The solution for windows support is to run everything in WSL since there is no real support for make on windows. This is functional but everything in this repo can be ran in windows with no issues if we do one of the following two things...
- There really isn't any great support for Makefile on windows and it's best to avoid if you want a cross platform tool. My personal favorite way to fix this problem is to use Mage. This way you're doing everything in go and people can install mage and use it cross platform on their own.
 - We could migrate from a Makefile to a go cli and put all the functionality in there. Since this is a tool to boot kube clusters in vagrant it might make the most sense since it's more likely you'll be working in a branch of kube and it doesn't make sense to change dir over to this repo to run 
makecommands to test your changes. 
I'm open to both implementations if someone wants to make a decision on which direction we should take.