File size: 201 Bytes
a756e18
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -e

# Start ComfyUI
python main.py --listen &

# Start wsj-server
python wsj-server.py &

# Wait for any process to exit
wait -n

# Exit with status of process that exited first
exit $?