I have a batch file, that calls another batch file, as follows:
...
set my_path=%~dp0%
cd /D %my_path%
call remove\remove.bat
...
I cannot step into(F11) the called batch.
If replace the string
call remove\remove.bat with
call c:\tt\tada\remove\remove.bat it works fine.
My batch file works fine executed in a cmd-shell but not in the Take debugger IDE.
I understand it has something to do with path settings, but what and how?
My demands is that it has to be a relative path because the top folder (containing several more batch files and other calls) can be put anywhere.
How do set up the tool to handle this path problem
...
set my_path=%~dp0%
cd /D %my_path%
call remove\remove.bat
...
I cannot step into(F11) the called batch.
If replace the string
call remove\remove.bat with
call c:\tt\tada\remove\remove.bat it works fine.
My batch file works fine executed in a cmd-shell but not in the Take debugger IDE.
I understand it has something to do with path settings, but what and how?
My demands is that it has to be a relative path because the top folder (containing several more batch files and other calls) can be put anywhere.
How do set up the tool to handle this path problem