Running a .bat or .sh from as custom action (e.g. the .bat file below) does not show in the SourceTree command output pop-up. Instead a Command Prompt window pops up showing the script. How do I get this output in the Sourcetree output window?
I've enabled the Show Full Output. Below is what the test bat script looks like. I expect the output to show "hi" and "by" but it just says <script name> Completed successfully.
@echo off
echo "hi"
sleep 2
echo "by"
Does anyone know why the output is not shown? Am I doing something wrong?
BTW Runnign sourcetree 2.1.11.0 on Windows 10 (x64) machine.