I'm trying to get my commit-build.bat
to execute other .BAT files as part of our build process.
Content of commit-build.bat
:
"msbuild.bat"
"unit-tests.bat"
"deploy.bat"
This seems simple enough, but commit-build.bat
only executes the first item in the list (msbuild.bat
).
I have run each of the files separately with no problems.
Question&Answers:os