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:
To call a .bat file within a .bat file, use
.bat
call foo.bat
(Yes, this is silly, it would make more sense if you could call it with foo.bat, like you could from the command prompt, but the correct way is to use call.)
foo.bat
call