Some checks failed
BotServer CI / build (push) Failing after 9s
Update botui to latest commit which changes desktop title from 'Agent Farm' to 'General Bots' for brand consistency.
10 lines
145 B
Bash
Executable file
10 lines
145 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Cleaning up..."
|
|
rm -rf botserver-stack/ ./work/ .env
|
|
|
|
echo "Starting services..."
|
|
./restart.sh
|
|
|
|
echo "Reset complete!"
|