6 lines
100 B
Bash
Executable file
6 lines
100 B
Bash
Executable file
#!/bin/sh
|
|
if [ -d "venv" ]; then
|
|
. venv/bin/activate && python3 ubot.py
|
|
else
|
|
python3 ubot.py
|
|
fi
|