I have made a simple batch file for backing up my repository changes and rebuildig, but it always stops executing after the backup command is run. Have anyone here ever seen this happen before?
+1
A:
Specifically, if you run another batch file from your batch, you must use CALL, or your batch will stop executing at that point. (Control is transferred to the second batch file, and never returns.)
Running exe's and the like is ok - they return automatically.
mdma
2010-05-13 01:04:10
Thanks! I had just found that out and I was going to post it here.
Vicente
2010-05-13 01:44:40