Spaces:
Paused
Paused
| cd ~/BotDC || exit 1 | |
| LAST_MTIME=$(stat -c %Y bot.py 2>/dev/null) | |
| while true; do | |
| sleep 3 | |
| CURR_MTIME=$(stat -c %Y bot.py 2>/dev/null) | |
| if [ "$CURR_MTIME" != "$LAST_MTIME" ]; then | |
| echo "Wykryto zmiane w bot.py. Restartuje..." | |
| pkill -f "python bot.py" 2>/dev/null | |
| screen -dmS bot python bot.py | |
| LAST_MTIME=$CURR_MTIME | |
| fi | |
| done | |