mirror of
https://github.com/JarodMica/ai-voice-cloning.git
synced 2025-06-07 06:05:52 -04:00
7 lines
190 B
Bash
Executable file
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
|