I have the following case. In jenkins I have one build which is running on different envoironments. That's why I have build with parameters with two options PROD/TEST
. The build is invoking shell script with parameter PROD
or TEST
.
Here is example of the script A
which jenkins is invoking:
if %1%==TEST(
start F:\test.bat
)
The script A
itself is invoking another script - B
.
Here is example of script B
:
copy test.xt copyFolder\
The problem is that Jenkins only invoking the first script - A
- and the second script B
doesn't run.
Why does this happen?