diff --git a/run b/run index d9155f7..b011b80 100755 --- a/run +++ b/run @@ -1,2 +1,6 @@ #!/bin/sh -. venv/bin/activate && python3 ubot.py +if [ -d "venv" ]; then + . venv/bin/activate && python3 ubot.py +else + python3 ubot.py +fi