Hello
Is there any way to synchronize commands run witch run_command()?
I have 3 run_command() calls:
- run_command(‘command1’)
- run_command(‘command2’)
- run_command(‘command3’)
Command 2 should wait for command 1, command 3 should wait for command 2. What can I do to mate sure that they will be run in right order?
Thanks