So, I wrote a simple batch file which will update a directory lets say ../../sqlscripts
and copied svn.exe
to the directory where my .bat
file is, so that I can call svn update
in that batch files to update a particular folder. Here is the content of the batch file
svn update ../../sqlscripts
when I am executing this batch script from CMD it is getting executed and updating the folder ../../sqlscripts
. But the issue comes when I am executing the batch script from jenkins. Folder ../../sqlscripts
is not getting updated and I am having this log in jenkins
Skipped '..\..\sqlscripts'
Summary of conflicts:
Skipped paths: 1
I am not able to figure out what the issue is, rest of the line of the batch files are being executed as expected.