I\'m trying to get my commit-build.bat to execute other .BAT files as part of our build process.
commit-build.bat
Content of commit-build.bat:
Use:
call msbuild.bat call unit-tests.bat call deploy.bat
When not using CALL, the current batch file stops and the called batch file starts executing. It's a peculiar behavior dating back to the early MS-DOS days.