I have a UrbanCode Deploy process with a Command Line step that will run an executable jar myjar.jar
In Windows command line, to run as a separate process (so that the command line won't be blocked after I run the jar)
start java -jar myjar.jar
However if I run this command in a uDeploy step, the deploy process will just keep running (I assume it doesn't spawn a separate process).
How to achieve this via uDeploy? Thank you