-
Notifications
You must be signed in to change notification settings - Fork 30
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
Support automation for Windows #2
Comments
Have you tried using cygwin for running .sh in Windows? |
Looking for a .bat native solution so we don't create dependencies on other applications. |
.sh files to convert:
|
Most MinGW Windows developers use msys and bash. Batch (.bat) doesn't offer the functionality of a bash shell. I'm writing a cross-platform build tool and I'm using bash (even on DOS). There's a native build of bash called winbash ( http://win-bash.sourceforge.net/ ). I've built it from source. Swiss also includes a bash-like shell program ( https://github.com/minoca/swiss ) and is a lot like Busybox. It builds easily on Windows. There's also a port of Busybox to Win32. If you want something that's not dependent on a program you need to build or install, you can look into using JavaScript. An interpreter comes with Windows and it offers more functionality than bat files. There's a series of good articles on using JScript as a batch scripting language ( https://blogs.msdn.microsoft.com/garretts/2009/05/15/using-jscript-as-a-batch-scripting-language-part-ii/ ). |
Right now, a substantial portion of the workflow automation is based on Bash scripts (.sh).
The following files need to be transitioned to be Windows supportable. Namely, the following files need to be transitioned to a Windows-supportable format (i.e., batch scripts):
The text was updated successfully, but these errors were encountered: