| I think this is a problem, a.bat
@set A=123
@echo %A% %B% %C%
b.bat
@set B=456
@echo %A% %B% %C%
c.bat
@set C=789
@echo %A% %B% %C%
When I create an Execute Windows batch task in Jenkins which does:
b.bat and c.bat are never executed. Result:
Expectation:
123 %B% %C%
123 456 %C%
123 456 789
I think the result should be the same as OS run a batch files (all.bat)
|