ai-voice-cloning-mrq/start.sh
2024-04-15 07:59:32 -04:00

7 lines
190 B
Bash
Executable file

#!/bin/bash
ulimit -Sn `ulimit -Hn` # ROCm is a bitch
while [ true ]; do
python3 ./src/main.py "$@"
echo "Press Cntrl-C to quit or application will restart... (5s)"
sleep 5
done