Reputation: 12993
My script simply logs in RTC
, and then accept change sets so my local repository is update to date and ready for build.
lscm login ... (the rest omitted)
lscm accept ... (the rest omitted)
lscm logout ... (the rest omitted)
These commands are working fine if I run them one by one in a command shell.
However, if I save them in a .bat and run them in a batch, the execution stops after the first command (login) is completed.
What am I doing wrong?
Upvotes: 1
Views: 187
Reputation: 12993
I find an answer to this question after half an hour of googling, hoping that this can help someone having the same problem.
On Windows lscm itself is a batch command. To call it in a batch file, you may need to use:
call lscm login ...
call lscm accept ...
call lscm logout ...
Upvotes: 1